NDOJ/templates/organization/users.html

47 lines
1.1 KiB
HTML
Raw Normal View History

2022-11-27 07:03:38 +00:00
{% extends "user/base-users-two-col.html" %}
2020-01-21 06:35:58 +00:00
{% block users_media %}
2023-01-27 23:11:10 +00:00
<style>
.kick-form .button {
margin: -8px 0;
padding: 3px 12px;
}
#users-table td:nth-child(3), #users-table th:nth-child(3) {
text-align: left;
}
#users-table td:nth-child(2), #users-table th:nth-child(2) {
border-right: none;
}
.rank-td {
font-family: "Jersey M54";
font-size: large;
}
.user-points, .user-problem-count, .rating-td {
font-family: cursive;
}
</style>
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
{% if can_edit %}
<style>#users-table td:nth-child(3), #users-table th:nth-child(3) {
border-right: none;
}
</style>
{% endif %}
2020-01-21 06:35:58 +00:00
{% endblock %}
{% block users_js_media %}
2023-01-27 23:11:10 +00:00
<script type="text/javascript">
$(function () {
$('form.kick-form').find('a.button').click(function () {
$(this).parent().submit();
return false;
})
});
</script>
2020-01-21 06:35:58 +00:00
{% endblock %}
2022-05-28 04:28:22 +00:00
{% block left_sidebar %}
2023-01-27 23:11:10 +00:00
{% include "organization/org-left-sidebar.html" %}
2022-05-28 04:28:22 +00:00
{% endblock %}
2020-01-21 06:35:58 +00:00
{% block users_table %}{% include "organization/users-table.html" %}{% endblock %}