Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.17 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.17 KB

Catalogs Table - an app for RDMO

An app for the RDMO - Research Data Management Organiser Django project.

Made for the Issue (rdmorganiser/rdmo#448) and developed in PR (rdmorganiser/rdmo#482).

This app can be installed in the folder of the rdmo-app and adds a page /catalogs-table with an interactive overview of the catalogs in the instance.

Screenshot

Catalog-Table

Installation

Suggested installation from the <git-repo-url> as a git submodule.

cd rdmo-app
git submodule add <git-repo-url> catalogs_table_app

The only external requirement is django_tables2.

# in the python env
python3 -m pip install -r catalogs_table_app/requirements.txt

Add to the settings.py

INSTALLED_APPS += ['django_tables2', 'catalogs_table_app']

Add to the config/urls.py

urlpatterns = [
    ...
    path('catalogs-table/', include('catalogs_table_app.urls')),
]