{% from "components/icon.html" import Icon %} {% macro DatePicker( field, label=field.label | striptags, description=field.description, mindate=None, maxdate=None) -%}
{{ label }}
{% if description %} {{ description | safe }} {% endif %}
{{ Icon("ok", classes="icon--green") }}

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

{%- endmacro %}