summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/main_page/headline.html
blob: 1d0ade19618f6849e5f59de55f108d09fe36ce1c (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 %}
        <h1 id="questionCount" class="search-result-summary">
            {% trans cnt=questions_count, q_num=questions_count|intcomma %}{{q_num}} question{% pluralize %}{{q_num}} questions{% endtrans %}
        {% if author_name %}
            {% trans %}with {{author_name}}'s contributions{% endtrans %}
        {% endif %}
        </h1>
        <div class="clearfix"></div>
        {% if search_tags %}
            <div id="listSearchTags">
                <span class="left">{% trans %}Tagged{% endtrans %}</span>
                {{ macros.tag_list_widget(
                        search_tags,
                        id = 'searchTags',
                        deletable = True,
                        make_links = False
                    )
                }}
            </div>
        {% endif %}
        {% if author_name or search_tags or query %}
            <p class="search-tips"><b>{% trans %}Search tips:{% endtrans %}</b> 
            {% 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"><b>{% trans %}Search tip:{% endtrans %}</b> {% trans %}add tags and a query to focus your search{% endtrans %}</p>
        {% endif %}
{% endif %}