SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 5492414f authored by George Katsikas's avatar George Katsikas :goat:
Browse files

add shortcut to create issue when none are found

parent 13499dcc
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,13 @@
{% for issue in form.get_possible_issues %}
<li><a href="?issue={{ issue.id }}">{{ issue }}</a></li>
{% empty %}
<li><em>No Issues found. Please contact administration</em></li>
<li>No Issues found.
{% if perms.scipost.can_manage_issues %}
<a href="{% url 'journals:add_issue' %}">Create a new one.</a>
{% else %}
Contact administration.
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
......
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