Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ohmg/conf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
6 changes: 5 additions & 1 deletion ohmg/frontend/fixtures/default-navbar.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@
"title": "Georeferencing",
"children": [
{
"title": "Latest Activity",
"title": "Latest activity",
"link": "/activity"
},
{
"title": "Background jobs",
"link": "/jobs"
},
{
"title": "Contributors",
"link": "/profiles"
Expand Down
2 changes: 1 addition & 1 deletion ohmg/frontend/templates/frontend/activity.html
Original file line number Diff line number Diff line change
Expand Up @@ -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: <a href='/jobs'>jobs</a>" lead_icon="clipboard" %}

<section>
<div class="section-content">
Expand Down
2 changes: 1 addition & 1 deletion ohmg/frontend/templates/frontend/jobs.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

{% block main_content %}

{% include '_titlebar.html' with title="Jobs" subtitle="see also: <a href='/activity'>sessions</a>" lead_icon="wrench" %}
{% include '_titlebar.html' with title="Jobs" subtitle="see also: <a href='/activity'>activity</a>" lead_icon="wrench" %}

<section>
<div class="section-content">
Expand Down