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

8 lines
330 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% extends "tabs-base.html" %}
{% block tabs %}
2020-06-24 01:46:33 +00:00
{{ make_tab('list', 'fa-trophy', url('user_list'), _('Leaderboard')) }}
{{ make_tab('friends', 'fa-users', url('user_list') + '?friend=true', _('Friends')) }}
2020-01-21 06:35:58 +00:00
{{ make_tab('organizations', 'fa-university', url('organization_list'), _('Organizations')) }}
{% endblock %}