NDOJ/templates/organization/users.html

40 lines
1 KiB
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% extends "user/base-users.html" %}
{% block users_media %}
<style>
.kick-form .button {
margin: -8px 0;
2020-12-30 02:29:50 +00:00
padding: 3px 12px;
}
2021-12-27 10:18:04 +00:00
#users-table td:nth-child(3), #users-table th:nth-child(3) {
2020-12-30 02:29:50 +00:00
border-right: none;
2020-01-21 06:35:58 +00:00
}
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>
{% if is_admin %}
2021-12-27 10:18:04 +00:00
<style>#users-table td:nth-child(4), #users-table th:nth-child(4) {
2020-01-21 06:35:58 +00:00
border-right: none;
}
</style>
{% endif %}
{% endblock %}
{% block users_js_media %}
<script type="text/javascript">
$(function () {
$('form.kick-form').find('a.button').click(function () {
$(this).parent().submit();
return false;
})
});
</script>
{% endblock %}
{% block users_table %}{% include "organization/users-table.html" %}{% endblock %}