Skip to content

Instantly share code, notes, and snippets.

@eguevara2012
eguevara2012 / datepicker.html
Created May 28, 2012 20:15
Datepicker template for Django-Crispy-Forms
# Template for rendering the datepicker with Django-Crispy-Forms
# datepicker.html
{% load crispy_forms_field %}
<div id="div_{{ field.auto_id }}" class="clearfix control-group{% if field.errors %} error{% endif %}">
{% if field.label %}
<label for="id_{{ field.id_for_label }}" class="control-label {% if field.field.required %}requiredField{% endif %}">
{{ field.label|safe }}{% if field.field.required %}<span class="asteriskField">*</span>{% endif %}
</label>
{% endif %}