Django-ezutils consists of the following things:
- Common base abstract models for inherit.
- Common fields, forms, functions for use.
Add
django_ezutilsto your Django settingsINSTALLED_APPS:INSTALLED_APPS = [ # ... "django_ezutils", ]
Add
DatePickerFieldto yourforms.py:from django import forms from django_ezutils.fields import DatePickerField class YourForm(forms.Form): ... date = DatePickerField()
0.0.1 ---
- First commit.