Installation¶
EOA Forthcoming is a Django app for announcing forthcoming publications on the EOA Publication Platform. It provides a plugin for the CMS to show the cover and a blurb of publications that are to be published soon.
Quick start¶
Get the latest version with
pip
:pip install git+git://github.molgen.mpg.de/EditionOpenAccess/django-eoaforthcoming
Add “eoaforthcoming” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'eoaforthcoming', ]
Migrate in order to create the eoaforthcoming models:
python manage.py migrate
Removal¶
To remove the addon
Use
pip
to remove the addon:pip uninstall django-eoaforthcoming
Remove “eoaforthcoming” from your INSTALLED_APPS setting.