summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/user_profile/users_questions.html
blob: ca66b7e2995581c4b42dbb1947626e4c9bd1fed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- users_questions.html -->
{% import "macros.html" as macros %}
<div class="user-stats-table">
    {% for question in questions %}
    {{
        macros.question_summary(
            question.thread, question,
            extra_class='narrow', search_state=search_state,
            visitor = request.user
        )
    }}
    {% endfor %}
</div>
<!-- end users_questions.html -->