1 {% extends "base_content.html" %}
6 {% block title %}{% spaceless %}{% trans "Tag list" %}{% endspaceless %}{% endblock %}
8 <script type="text/javascript">
11 $("#ipSearchTag").focus();
13 var orderby = "{{ tab_id }}";
14 if(orderby != "used" && orderby != "name")
16 $("#sort_" + orderby).attr('className',"on");
17 $("#type-tag").attr('checked',true);
20 Hilite.elementid = "searchtags";
21 Hilite.debug_referrer = location.href;
29 <div class="headQuestions">{% trans "Tag list" %}</div>
30 {{ tags.paginator.sort_tabs }}
35 {% trans "All tags matching query" %} '<span class="darkred"><strong>{{ stag }}</strong></span>':
37 {% if not tags.paginator.count %}
38 <span>{% trans "Nothing found" %}</span>
41 {% if tags.paginator.count %}
42 <ul class="tagsList tags">
43 {% for tag in tags.paginator.page %}
45 <a class="tag-link-{{ tag }}" href="{% url tag_questions tag|urlencode %}" title="{% trans "see questions tagged" %}'{{ tag }}'{% trans "using tags" %}" rel="tag">
48 <span class="tag-number">× {{ tag.used_count|intcomma }}</span>
60 {{ tags.paginator.page_numbers }}
63 <!-- end tags.html -->