Skip to content
Snippets Groups Projects
Commit 67999482 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Add ORG_URL to context_processors so available in templates.

parent 3c6ff002
No related branches found
No related tags found
Loading
......@@ -5,7 +5,7 @@
{% trans "If you have any questions, please submit them here" %}: {{ request.scheme }}://{{ request.get_host }}{{ source.get_absolute_url }}#communications
{% blocktrans %}If you have issues accessing the submission system or general inquiries, please email us at {{ ORG_EMAIL}}.{% endblocktrans %}
{% blocktrans %}If you have issues accessing the submission system or general inquiries, please email us at {{ ORG_EMAIL }}.{% endblocktrans %}
{% blocktrans %}For more information about our support options, review process, and selection criteria, please visit our website at {{ ORG_URL }}.{% endblocktrans %}
......
......@@ -15,6 +15,7 @@ def global_vars(request):
'ORG_SHORT_NAME': settings.ORG_SHORT_NAME,
'ORG_EMAIL': settings.ORG_EMAIL,
'ORG_GUIDE_URL': settings.ORG_GUIDE_URL,
'ORG_URL': settings.ORG_URL,
'MATOMO_URL': settings.MATOMO_URL,
'MATOMO_SITEID': settings.MATOMO_SITEID,
'CURRENCY_SYMBOL': settings.CURRENCY_SYMBOL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment