26 lines
No EOL
626 B
HTML
26 lines
No EOL
626 B
HTML
{% extends "user/base-users.html" %}
|
|
|
|
{% block users_media %}
|
|
<style>
|
|
#users-table td:nth-child(2), #users-table th:nth-child(2) {
|
|
border-right: none;
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block title_ruler %}{% endblock %}
|
|
|
|
{% block title_row %}
|
|
{% if request.GET.get('friend') == 'true'%}
|
|
{% set tab = 'friends' %}
|
|
{% else %}
|
|
{% set tab = 'list' %}
|
|
{% endif %}
|
|
{% set title = 'Leaderboard' %}
|
|
{% include "user/user-list-tabs.html" %}
|
|
{% endblock %}
|
|
|
|
{% block users_table %}
|
|
{% include "user/users-table.html" %}
|
|
{% endblock %} |