diff --git a/ohmg/conf/settings.py b/ohmg/conf/settings.py index 73ebb726..925346d0 100644 --- a/ohmg/conf/settings.py +++ b/ohmg/conf/settings.py @@ -303,7 +303,7 @@ # this will be removed once Django is upgraded SWAP_COORDINATE_ORDER = ast.literal_eval(os.getenv("SWAP_COORDINATE_ORDER", "False")) -MAX_CONCURRENT_MOSAIC_JOBS = os.getenv("MAX_CONCURRENT_MOSAIC_JOBS", 1) +MAX_CONCURRENT_MOSAIC_JOBS = int(os.getenv("MAX_CONCURRENT_MOSAIC_JOBS", 1)) # CONFIGURE CELERY CELERY_BROKER_URL = os.getenv("BROKER_URL") diff --git a/ohmg/frontend/fixtures/default-navbar.json b/ohmg/frontend/fixtures/default-navbar.json index 1743207e..1f26657f 100644 --- a/ohmg/frontend/fixtures/default-navbar.json +++ b/ohmg/frontend/fixtures/default-navbar.json @@ -23,9 +23,13 @@ "title": "Georeferencing", "children": [ { - "title": "Latest Activity", + "title": "Latest activity", "link": "/activity" }, + { + "title": "Background jobs", + "link": "/jobs" + }, { "title": "Contributors", "link": "/profiles" diff --git a/ohmg/frontend/templates/frontend/activity.html b/ohmg/frontend/templates/frontend/activity.html index 636eb767..186738a6 100644 --- a/ohmg/frontend/templates/frontend/activity.html +++ b/ohmg/frontend/templates/frontend/activity.html @@ -6,7 +6,7 @@ {% block main_content %} -{% include '_titlebar.html' with title="Activity" lead_icon="clipboard" %} +{% include '_titlebar.html' with title="Activity" subtitle="see also: jobs" lead_icon="clipboard" %}
diff --git a/ohmg/frontend/templates/frontend/jobs.html b/ohmg/frontend/templates/frontend/jobs.html index d5675372..b4945872 100644 --- a/ohmg/frontend/templates/frontend/jobs.html +++ b/ohmg/frontend/templates/frontend/jobs.html @@ -6,7 +6,7 @@ {% block main_content %} -{% include '_titlebar.html' with title="Jobs" subtitle="see also: sessions" lead_icon="wrench" %} +{% include '_titlebar.html' with title="Jobs" subtitle="see also: activity" lead_icon="wrench" %}