Django 1.8 & Django Crispy Forms: Is there a simple, easy way of implementing a Date Picker?

前端 未结 4 2015
逝去的感伤
逝去的感伤 2021-02-07 13:41

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?

4条回答
  •  旧巷少年郎
    2021-02-07 14:10

    Easy way is override field template :D

    Field('field_name', template='date.html')
    

    Here gist from @maraujop

提交回复
热议问题