NDOJ/templates/organization/users.html

47 lines
1.2 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 %}
<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) {
2022-11-09 20:41:08 +00:00
text-align: left;
2020-01-21 06:35:58 +00:00
}
2022-06-19 09:25:06 +00:00
#users-table td:nth-child(2), #users-table th:nth-child(2) {
border-right: none;
}
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>
2022-05-28 07:52:41 +00:00
{% if can_edit %}
2022-11-09 20:41:08 +00:00
<style>#users-table td:nth-child(3), #users-table th:nth-child(3) {
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 %}
2022-05-28 04:28:22 +00:00
{% block left_sidebar %}
{% include "organization/org-left-sidebar.html" %}
{% endblock %}
2020-01-21 06:35:58 +00:00
{% block users_table %}{% include "organization/users-table.html" %}{% endblock %}