├── .gitignore ├── LICENCE ├── README.md ├── README.rst ├── algerography ├── __init__.py ├── admin.py ├── apps.py ├── fixtures │ ├── daira.json │ └── wilaya.json ├── management │ └── commands │ │ ├── __init__.py │ │ └── load_algerography.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py └── models.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algerography/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algerography/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/algerography/admin.py -------------------------------------------------------------------------------- /algerography/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/algerography/apps.py -------------------------------------------------------------------------------- /algerography/fixtures/daira.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/algerography/fixtures/daira.json -------------------------------------------------------------------------------- /algerography/fixtures/wilaya.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/algerography/fixtures/wilaya.json -------------------------------------------------------------------------------- /algerography/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algerography/management/commands/load_algerography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/algerography/management/commands/load_algerography.py -------------------------------------------------------------------------------- /algerography/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/algerography/migrations/0001_initial.py -------------------------------------------------------------------------------- /algerography/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algerography/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/algerography/models.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bensarifathi/django-algeography/HEAD/pyproject.toml --------------------------------------------------------------------------------