Django 1.8 & Django Crispy Forms: Is there a simple, easy way of implementing a Date Picker?
- 阅读更多 关于 Django 1.8 & Django Crispy Forms: Is there a simple, easy way of implementing a Date Picker?
问题 There are an awful lot of date/datetime picker implementations out there. Are there any that integrate with Django and Crispy Forms particularly well, and how are they used? I'm looking to minimise development effort, maximise simplicity, and make use of Django localisation. A Django/Crispy standard output for a date field: <input class="dateinput form-control" id="id_birth_date" name="birth_date" type="text" value="21/07/2015"> In the Model: birth_date = models.DateField(verbose_name='D.O.B'