├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── custom_field ├── __init__.py ├── admin.py ├── custom_field.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150119_2032.py │ ├── 0003_customfield_mask.py │ ├── 0004_django2_upgrade.py │ └── __init__.py ├── models.py ├── templates │ └── admin │ │ └── includes │ │ └── custom_field_fieldset.html └── tests.py ├── manage.py ├── screencaps ├── customfield1.png ├── customfield2.png ├── customfield3.png ├── customfield4.png └── customfield5.png ├── setup.py ├── test_settings.py ├── test_urls.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include custom_field/templates * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/README.md -------------------------------------------------------------------------------- /custom_field/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_field/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/admin.py -------------------------------------------------------------------------------- /custom_field/custom_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/custom_field.py -------------------------------------------------------------------------------- /custom_field/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/migrations/0001_initial.py -------------------------------------------------------------------------------- /custom_field/migrations/0002_auto_20150119_2032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/migrations/0002_auto_20150119_2032.py -------------------------------------------------------------------------------- /custom_field/migrations/0003_customfield_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/migrations/0003_customfield_mask.py -------------------------------------------------------------------------------- /custom_field/migrations/0004_django2_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/migrations/0004_django2_upgrade.py -------------------------------------------------------------------------------- /custom_field/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_field/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/models.py -------------------------------------------------------------------------------- /custom_field/templates/admin/includes/custom_field_fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/templates/admin/includes/custom_field_fieldset.html -------------------------------------------------------------------------------- /custom_field/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/custom_field/tests.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/manage.py -------------------------------------------------------------------------------- /screencaps/customfield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/screencaps/customfield1.png -------------------------------------------------------------------------------- /screencaps/customfield2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/screencaps/customfield2.png -------------------------------------------------------------------------------- /screencaps/customfield3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/screencaps/customfield3.png -------------------------------------------------------------------------------- /screencaps/customfield4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/screencaps/customfield4.png -------------------------------------------------------------------------------- /screencaps/customfield5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/screencaps/customfield5.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/setup.py -------------------------------------------------------------------------------- /test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/test_settings.py -------------------------------------------------------------------------------- /test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/test_urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willseward/django-custom-field/HEAD/tox.ini --------------------------------------------------------------------------------