Installation¶
EOA Series is a Django app for displaying publications series in the EOA Publication Platform. It forms the connection between the pages managed by the CMS and the publications stored in the database.
Quick start¶
Get the latest version with
pip
:pip install git+git://github.molgen.mpg.de/EditionOpenAccess/django-eoaseries
Add “eoaseries” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'eoaseries', ]
Migrate in order to create the eoaseries models:
python manage.py migrate
Removal¶
To remove the addon
Use
pip
to remove the addon:pip uninstall django-eoaseries
Remove “eoaseries” from your INSTALLED_APPS setting.