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