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>
31 <a id="sort_name" href="{% url tags %}?sort=name" class="off" title="{% trans "sorted alphabetically" %}">{% trans "by name" %}</a>
32 <a id="sort_used" href="{% url tags %}?sort=used" class="off" title="{% trans "sorted by frequency of tag use" %}">{% trans "by popularity" %}</a>
38 {% trans "All tags matching query" %} '<span class="darkred"><strong>{{ stag }}</strong></span>':
40 {% if not tags.object_list %}
41 <span>{% trans "Nothing found" %}</span>
44 {% if tags.object_list %}
45 <ul class="tagsList tags">
46 {% for tag in tags.object_list %}
48 <a href="{% url tag_questions tag|urlencode %}" title="{% trans "see questions tagged" %}'{{ tag }}'{% trans "using tags" %}" rel="tag">
51 <span class="tag-number">× {{ tag.used_count|intcomma }}</span>
63 {% cnprog_paginator context %}
66 <!-- end tags.html -->