fix conjugation

This commit is contained in:
Franklin Delehelle 2014-09-23 19:21:14 +02:00 committed by Élie Bouttier
parent b38f168340
commit 9495924722
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
<div class="pull-right">
<div class="btn-group">
<a href="{% url 'list-issue' project.name %}?q=is:open{% if is_all_query %} {{ is_all_query }}{% endif %}{{ sort }}" class="btn btn-default{{ is_open }}">Open</a>
<a href="{% url 'list-issue' project.name %}?q=is:close{% if is_all_query %} {{ is_all_query }}{% endif %}{{ sort }}" class="btn btn-default{{ is_close }}">Close</a>
<a href="{% url 'list-issue' project.name %}?q=is:close{% if is_all_query %} {{ is_all_query }}{% endif %}{{ sort }}" class="btn btn-default{{ is_close }}">Closed</a>
<a href="{% url 'list-issue' project.name %}?q={% if is_all_query %}{{ is_all_query }}{% else %}*{% endif %}{{ sort }}" class="btn btn-default{{ is_all }}">All</a>
</div>
{% if perm.create_issue %}

View file

@ -13,7 +13,7 @@
<div class="pull-right">
<div class="btn-group">
<a href="{% url 'list-milestone' project.name %}?show=open" class="btn btn-default{% if show == 'open' %} active{% endif %}">Open</a>
<a href="{% url 'list-milestone' project.name %}?show=close" class="btn btn-default{% if show == 'close' %} active{% endif %}">Close</a>
<a href="{% url 'list-milestone' project.name %}?show=close" class="btn btn-default{% if show == 'close' %} active{% endif %}">Closed</a>
<a href="{% url 'list-milestone' project.name %}?show=all" class="btn btn-default{% if show == 'all' %} active{% endif %}">All</a>
</div>
{% if perm.manage_tags %}