Last updated:
0 purchases
artdalliance 1.0.1
ArtD Alliance
Art Alliance is a package that makes it possible to manage allies and alliance.
Add to your INSTALLED_APPS setting like this:
.. code-block:: python
INSTALLED_APPS = [
'artd_module',
'artd_location',
'artd_partner',
'artd_alliance',
]
Run the migration commands:
.. code-block::
python manage.py makemigrations
python manage.py migrate
Run the seeder data:
.. code-block::
python manage.py create_countries
python manage.py create_colombian_regions
python manage.py create_colombian_cities
Add context processors
.. code-block::
TEMPLATES = [
{
'OPTIONS': {
'context_processors': [
...
'artd_alliance.context_processors.user_context_processor',
...
],
},
},
]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.