gitextract_jj2ggm8b/ ├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs/ │ ├── Makefile │ ├── authors.rst │ ├── conf.py │ ├── contributing.rst │ ├── history.rst │ ├── index.rst │ ├── installation.rst │ ├── make.bat │ ├── readme.rst │ └── usage.rst ├── example/ │ ├── __init__.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── requirements-test.txt ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── test_admin.py │ ├── test_fields.py │ ├── test_forms.py │ ├── test_managers.py │ ├── test_models.py │ ├── test_utils.py │ └── test_views.py ├── tox.ini └── users/ ├── __init__.py ├── admin.py ├── compat.py ├── conf.py ├── fields.py ├── forms.py ├── managers.py ├── migrations/ │ ├── 0001_initial.py │ ├── 0002_alter_user_last_login_null.py │ └── __init__.py ├── models.py ├── signals.py ├── templates/ │ ├── base.html │ └── users/ │ ├── activate.html │ ├── activation_complete.html │ ├── activation_email.html │ ├── activation_email_subject.html │ ├── login.html │ ├── logout.html │ ├── partials/ │ │ ├── errors.html │ │ ├── field.html │ │ └── honeypot.html │ ├── password_change_done.html │ ├── password_change_form.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ ├── password_reset_form.html │ ├── password_reset_subject.html │ ├── registration_closed.html │ ├── registration_complete.html │ └── registration_form.html ├── templatetags/ │ ├── __init__.py │ └── form_tags.py ├── urls.py ├── utils.py └── views.py