summaryrefslogtreecommitdiffstats
path: root/askbot/templates/widgets/user_list.html
blob: 6f3c97cb91c6b6d6bfd704a480d3884d536a26b2 (plain)
1
2
3
4
5
6
7
8
{% import "macros.html" as macros %}
{% if users %}
<ul class="user-list">
    {% for user in users %}
    <li>{{ macros.user_card(user, karma_mode=karma_mode, badges_mode=badges_mode) }}</li>
    {% endfor %}
</ul>
{% endif %}