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 ----------- 1. Get the latest version with ``pip``:: pip install git+git://github.molgen.mpg.de/EditionOpenAccess/django-eoaseries 2. Add "eoaseries" to your INSTALLED_APPS setting like this:: INSTALLED_APPS = [ ... 'eoaseries', ] 3. Migrate in order to create the eoaseries models:: python manage.py migrate Removal ------- To remove the addon 1. Use ``pip`` to remove the addon:: pip uninstall django-eoaseries 2. Remove "eoaseries" from your INSTALLED_APPS setting.