summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/main_page/headline.html
blob: 62d67ebbbf209270783bc07c6fe1012741eb975d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% import "macros.html" as macros %}
{% if questions_count > 0 %}
    <div style="clear:both">
        <h1 id="question-count" class="search-result-summary">
        {% if search_tags %}
            {% trans cnt=questions_count, q_num=questions_count|intcomma %}{{q_num}} question, tagged{% pluralize %}{{q_num}} questions, tagged{% endtrans %}
        {% else %}
            {% trans cnt=questions_count, q_num=questions_count|intcomma %}{{q_num}} question{% pluralize %}{{q_num}} questions{% endtrans %}
        {% endif %}
        {% if author_name %}
            {% trans %}with {{author_name}}'s contributions{% endtrans %}
        {% endif %}
        </h1>
        {{ macros.tag_list_widget(
                search_tags,
                id = 'search-tags',
                deletable = True,
                make_links = False
            )
        }}
        {% if author_name or search_tags or query %}
            <p class="search-tips">{% trans %}Search tips:{% endtrans %}
            {% if reset_method_count > 1 %}
                {% if author_name %}
                <a href="{% url questions %}?reset_author=true">{% trans %}reset author{% endtrans %}</a>
                {% endif %}
                {% if search_tags %}{% if author_name and query %}, {% elif author_name %}{% trans %} or {% endtrans %}{% endif %}
                    <a href="{% url questions %}?reset_tags=true">{% trans %}reset tags{% endtrans %}</a>
                {% endif %}
                {% if query %}{% trans %} or {% endtrans %}
                    <a href="{% url questions %}?start_over=true">{% trans %}start over{% endtrans %}</a>
                {% endif %}
            {% else %}
                <a href="{% url questions %}?start_over=true">{% trans %}start over{% endtrans %}</a>
            {% endif %}
            {% trans %} - to expand, or dig in by adding more tags and revising the query.{% endtrans %}
            </p>
        {% else %}
            <p class="search-tips">{% trans %}Search tip:{% endtrans %} {% trans %}add tags and a query to focus your search{% endtrans %}</p>
        {% endif %}
    </div>
{% endif %}