├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── VERSION ├── django_smalluuid ├── __init__.py ├── forms.py ├── models.py └── settings.py ├── setup.py └── tests ├── __init__.py ├── manage.py ├── settings.py ├── testapp ├── __init__.py ├── forms.py ├── models.py ├── tests.py └── views.py └── urls.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.2.1 2 | -------------------------------------------------------------------------------- /django_smalluuid/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /django_smalluuid/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/django_smalluuid/forms.py -------------------------------------------------------------------------------- /django_smalluuid/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/django_smalluuid/models.py -------------------------------------------------------------------------------- /django_smalluuid/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/django_smalluuid/settings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/tests/testapp/forms.py -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/tests/testapp/tests.py -------------------------------------------------------------------------------- /tests/testapp/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-smalluuid/HEAD/tests/urls.py --------------------------------------------------------------------------------