summaryrefslogtreecommitdiffstats
path: root/askbot/templates/main_page/questions_loop.html
blob: 10a7fce114f35011cef916b42161fb4d7e7d6925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% import "macros.html" as macros %}
{% if threads.object_list|length == 0 %}
    {% include "main_page/nothing_found.html" %}
{% else %}
    {% for thread in threads.object_list %}
        {{ thread.get_summary_html(search_state=search_state, visitor = request.user) }}
    {% endfor %}
    <div class="evenMore">
        {% trans %}Did not find what you were looking for?{% endtrans %} 
        <a href="{% url ask %}">{% trans %}Ask your question!{% endtrans %}</a>
    </div>
{% endif %}