├── .github └── workflows │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── MANIFEST.in ├── README.rst ├── cuser ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_user_last_name_max_length.py │ ├── 0003_alter_user_first_name_max_length.py │ └── __init__.py ├── models.py ├── settings.py └── templates │ └── admin │ └── cuser │ └── cuser │ └── add_form.html ├── setup.py └── tox.ini /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [MASTER] 2 | ignore=migrations 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/README.rst -------------------------------------------------------------------------------- /cuser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuser/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/admin.py -------------------------------------------------------------------------------- /cuser/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/apps.py -------------------------------------------------------------------------------- /cuser/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/forms.py -------------------------------------------------------------------------------- /cuser/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/migrations/0001_initial.py -------------------------------------------------------------------------------- /cuser/migrations/0002_alter_user_last_name_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/migrations/0002_alter_user_last_name_max_length.py -------------------------------------------------------------------------------- /cuser/migrations/0003_alter_user_first_name_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/migrations/0003_alter_user_first_name_max_length.py -------------------------------------------------------------------------------- /cuser/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuser/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/models.py -------------------------------------------------------------------------------- /cuser/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/settings.py -------------------------------------------------------------------------------- /cuser/templates/admin/cuser/cuser/add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/cuser/templates/admin/cuser/cuser/add_form.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataylor32/django-username-email/HEAD/tox.ini --------------------------------------------------------------------------------