Shows how to use date pickers with django-crispy-forms.

Using {% crispy form %}

{% crispy form %} renders JavaScript and CSS files inside the form, so you don't need to add {{ form.media }} to your template, just make sure bootstrap JavaScript and jQuery is added before {% crispy form %}.

Using {{ form | crispy }}

Add to your project

Copy and complete following prompt to your AI coding agent to add anything from this example to your project.