mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
bugfix : "Settle" link was not active on navbar.
This commit is contained in:
parent
0d7c82b122
commit
a0e94f3c11
2 changed files with 4 additions and 5 deletions
|
@ -41,8 +41,10 @@
|
||||||
<h1><a class="brand" href="{{ url_for(".home") }}">#! money?</a></h1>
|
<h1><a class="brand" href="{{ url_for(".home") }}">#! money?</a></h1>
|
||||||
{% if g.project %}
|
{% if g.project %}
|
||||||
<ul class="nav primary-nav">
|
<ul class="nav primary-nav">
|
||||||
|
{% block navbar %}
|
||||||
<li class="active"><a href="{{ url_for(".list_bills") }}">{{ _("Bills") }}</a></li>
|
<li class="active"><a href="{{ url_for(".list_bills") }}">{{ _("Bills") }}</a></li>
|
||||||
<li><a href="{{ url_for(".settle_bill") }}">{{ _("Settle") }}</a></li>
|
<li><a href="{{ url_for(".settle_bill") }}">{{ _("Settle") }}</a></li>
|
||||||
|
{% endblock %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<ul class="nav pull-right secondary-nav">
|
<ul class="nav pull-right secondary-nav">
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
{% block js %}
|
|
||||||
$('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});
|
|
||||||
{% endblock %}
|
|
||||||
{% block navbar %}
|
{% block navbar %}
|
||||||
<li><a href="{{ url_for(".list_bills") }}">{{ _("Bills") }}</a></li>
|
<li><a href="{{ url_for(".list_bills") }}">{{ _("Bills") }}</a></li>
|
||||||
<li class="active"><a href="{{ url_for(".settle_bills") }}">{{ _("Settle") }}</a></li>
|
<li class="active"><a href="{{ url_for(".settle_bill") }}">{{ _("Settle") }}</a></li>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block sidebar %}
|
{% block sidebar %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue