Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
elarroba committed Jan 7, 2025
2 parents d2ffa02 + a7d0700 commit 0486004
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions django_ledger/templates/django_ledger/includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,15 @@
<div class="navbar-item">CE TO: {{ tx_digest_context.IO_RESULT.ce_to_date | date }}</div>
{% endif %}
<div class="navbar-item">
<a href="{% url 'django_ledger:logout' %}"
id="djl-el=logout-button-nav"
class="button is-small is-danger is-outlined">
{% trans 'Logout' %}
</a>
<form action="{% url 'django_ledger:logout' %}" method="POST">
{% csrf_token %}
<button
id="djl-el=logout-button-nav"
class="button is-small is-danger is-outlined"
type="submit">
{% trans 'Logout' %}
</button>
</form>
</div>
<div class="navbar-item">{% feedback_button %}</div>
<div class="navbar-item">v{% current_version %}</div>
Expand Down

0 comments on commit 0486004

Please sign in to comment.