├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── django_group_model ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── pyproject.toml └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/README.md -------------------------------------------------------------------------------- /django_group_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_group_model/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/django_group_model/admin.py -------------------------------------------------------------------------------- /django_group_model/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/django_group_model/apps.py -------------------------------------------------------------------------------- /django_group_model/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_group_model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/django_group_model/models.py -------------------------------------------------------------------------------- /django_group_model/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/django_group_model/tests.py -------------------------------------------------------------------------------- /django_group_model/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitchhatbar/django-group-model/HEAD/setup.py --------------------------------------------------------------------------------