Skip to content

Commit

Permalink
Fix archive URL
Browse files Browse the repository at this point in the history
Use an absolute URL so it stays the same on every page.
  • Loading branch information
guillaumep committed Feb 12, 2021
1 parent 7f12c08 commit e7232d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion souschef/sous_chef/templates/system/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h4 class="ui header name">
<a class="item" href="{% url 'billing:list' %}"><i class="dollar icon"></i>{% trans 'Billing' %}</a>
{% if request.user.is_superuser %}<a class="item" href="{% url 'admin:index' %}"><i class="settings icon"></i>{% trans 'Admin' %}</a>{% endif %}
<!-- The archive link is served by nginx. It contains previously generated kitchen counts, labels and route reports. -->
<a class="item" href="archive" target="_blank"><i class="folder icon"></i>{% trans 'Archive' %}</a>
<a class="item" href="/archive" target="_blank"><i class="folder icon"></i>{% trans 'Archive' %}</a>
<a href="{% url 'page:logout' %}" class="item"><i class="sign out icon"></i>{% trans 'Logout' %}</a>
</div>
<div class="item">
Expand Down

0 comments on commit e7232d2

Please sign in to comment.