NDOJ/templates/user/user-list-tabs.html

11 lines
464 B
HTML
Raw Normal View History

2020-01-21 15:35:58 +09:00
{% extends "tabs-base.html" %}
{% block tabs %}
2020-06-23 20:46:33 -05:00
{{ make_tab('list', 'fa-trophy', url('user_list'), _('Leaderboard')) }}
{{ make_tab('friends', 'fa-users', url('user_list') + '?friend=true', _('Friends')) }}
2020-01-21 15:35:58 +09:00
{{ make_tab('organizations', 'fa-university', url('organization_list'), _('Organizations')) }}
2021-07-28 17:58:42 -05:00
{% if request.user.is_superuser %}
{{ make_tab('import', 'fa-table', url('import_users'), _('Import')) }}
{% endif %}
2020-01-21 15:35:58 +09:00
{% endblock %}