PageRenderTime 17ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/django/contrib/admin/templates/admin/filter.html

https://code.google.com/p/mango-py/
HTML | 8 lines | 8 code | 0 blank | 0 comment | 0 complexity | cebe60258c6d3ea846db7a61ad48b3d0 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. {% load i18n %}
  2. <h3>{% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}</h3>
  3. <ul>
  4. {% for choice in choices %}
  5. <li{% if choice.selected %} class="selected"{% endif %}>
  6. <a href="{{ choice.query_string|iriencode }}">{{ choice.display }}</a></li>
  7. {% endfor %}
  8. </ul>