{% from "components/icon.html" import Icon %} {% macro DatePicker(field, mindate=None, maxdate=None) -%}
{{ Icon("ok", classes="icon--green") }}

{% if maxdate and mindate %}Date must be between {{maxdate.strftime("%Y-%m-%d")}} and {{mindate.strftime("%Y-%m-%d")}}{% endif %} {% if maxdate and not mindate %}Date must be before or on {{maxdate.strftime("%Y-%m-%d")}}{% endif %} {% if mindate and not maxdate %}Date must be after or on {{mindate.strftime("%Y-%m-%d")}}{% endif %}

{%- endmacro %}