Evaluation of Javascript Libraries
# for django integration.
# for django integration.
# for changing the default model form setting.
“”"I use something like this (after adding in the JS) to create a form with a date field that works like the admin:
from django import forms
from django.contrib.admin import widgets
class FooForm(forms.Form):
bar = forms.DateField(widget=widgets.AdminDateWidget)
“”"
# and it’s application to Django’s model-based URL generation.
# “…When used wisely, it can allow for a situation in which you can literally design an entire site by creating only one HTML file.”