NDOJ/templates/user/list.html

26 lines
574 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% 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;
}
#users-table th a {
color: white;
}
</style>
{% endblock %}
{% block title_ruler %}{% endblock %}
{% block title_row %}
{% set tab = 'list' %}
{% set title = 'Leaderboard' %}
{% include "user/user-list-tabs.html" %}
{% endblock %}
{% block users_table %}
{% include "user/users-table.html" %}
{% endblock %}