NDOJ/templates/user/list.html

33 lines
824 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% extends "user/base-users.html" %}
{% block users_media %}
<style>
2021-12-27 10:18:04 +00:00
#users-table td:nth-child(3), #users-table th:nth-child(3) {
2020-01-21 06:35:58 +00:00
border-right: none;
text-align: left;
}
2021-12-27 10:18:04 +00:00
.rank-td {
font-family: "Jersey M54";
font-size: large;
}
.user-points, .user-problem-count, .rating-td {
font-family: cursive;
}
2020-01-21 06:35:58 +00:00
</style>
{% endblock %}
{% block title_ruler %}{% endblock %}
{% block title_row %}
2020-06-24 01:46:33 +00:00
{% if request.GET.get('friend') == 'true'%}
{% set tab = 'friends' %}
{% else %}
{% set tab = 'list' %}
{% endif %}
2020-01-21 06:35:58 +00:00
{% set title = 'Leaderboard' %}
{% include "user/user-list-tabs.html" %}
{% endblock %}
{% block users_table %}
{% include "user/users-table.html" %}
{% endblock %}