├── .gitignore ├── AUTHORS ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── README.md ├── sequence_field ├── __init__.py ├── admin.py ├── constants.py ├── exceptions.py ├── expanders.py ├── fields.py ├── models.py ├── settings.py ├── strings.py └── utils.py ├── setup.py └── test_project ├── app ├── __init__.py ├── admin.py ├── models.py ├── strings.py ├── tests.py └── views.py ├── manage.py └── test_project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/README.md -------------------------------------------------------------------------------- /sequence_field/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/__init__.py -------------------------------------------------------------------------------- /sequence_field/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/admin.py -------------------------------------------------------------------------------- /sequence_field/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/constants.py -------------------------------------------------------------------------------- /sequence_field/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/exceptions.py -------------------------------------------------------------------------------- /sequence_field/expanders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/expanders.py -------------------------------------------------------------------------------- /sequence_field/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/fields.py -------------------------------------------------------------------------------- /sequence_field/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/models.py -------------------------------------------------------------------------------- /sequence_field/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/settings.py -------------------------------------------------------------------------------- /sequence_field/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/strings.py -------------------------------------------------------------------------------- /sequence_field/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/sequence_field/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/app/admin.py -------------------------------------------------------------------------------- /test_project/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/app/models.py -------------------------------------------------------------------------------- /test_project/app/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/app/strings.py -------------------------------------------------------------------------------- /test_project/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/app/tests.py -------------------------------------------------------------------------------- /test_project/app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/test_project/settings.py -------------------------------------------------------------------------------- /test_project/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/test_project/urls.py -------------------------------------------------------------------------------- /test_project/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnrfan/django-sequence-field/HEAD/test_project/test_project/wsgi.py --------------------------------------------------------------------------------