├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── justfile ├── pyproject.toml ├── src └── unique_user_email │ ├── __init__.py │ ├── apps.py │ ├── backend.py │ ├── forms.py │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── it │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ └── models.py └── tests ├── __init__.py ├── settings.py ├── tests.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/unique_user_email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/__init__.py -------------------------------------------------------------------------------- /src/unique_user_email/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/apps.py -------------------------------------------------------------------------------- /src/unique_user_email/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/backend.py -------------------------------------------------------------------------------- /src/unique_user_email/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/forms.py -------------------------------------------------------------------------------- /src/unique_user_email/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/unique_user_email/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/unique_user_email/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/unique_user_email/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/unique_user_email/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/unique_user_email/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/unique_user_email/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/unique_user_email/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/unique_user_email/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/unique_user_email/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/unique_user_email/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/src/unique_user_email/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/unique_user_email/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/unique_user_email/models.py: -------------------------------------------------------------------------------- 1 | # Empty models.py to trigger migrations framework for app. 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carltongibson/django-unique-user-email/HEAD/tests/urls.py --------------------------------------------------------------------------------