Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #867 from geometalab/feature/single_quotes
Browse files Browse the repository at this point in the history
use single quotes
  • Loading branch information
hixi authored May 12, 2017
2 parents bcae5bc + 0810447 commit 53b452c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ <h3 class="panel-title">{% trans 'Filter' %}</h3>
</div>
<div class="panel-body">
<div class="btn-group" role="group" aria-label="status-filter-button-group">
<a class="btn btn-default{% if not status_filter or status_filter == "all" %} active{% endif %}" role="button" href=".">{% trans 'Show all' %}</a>
<a class="btn btn-default{% if not status_filter or status_filter == 'all' %} active{% endif %}" role="button" href=".">{% trans 'Show all' %}</a>
{% for status, display in status_choices %}
<a class="btn btn-default{% if status_filter == status %} active{% endif %}" role="button" href="?status={{ status }}">{{ display|capfirst }}</a>
{% endfor %}
Expand Down

0 comments on commit 53b452c

Please sign in to comment.