Cloned DMOJ
This commit is contained in:
parent
f623974b58
commit
49dc9ff10c
513 changed files with 132349 additions and 39 deletions
19
templates/organization/users-table.html
Normal file
19
templates/organization/users-table.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
{% extends "user/users-table.html" %}
|
||||
|
||||
{% block before_point_head %}
|
||||
{% if is_admin %}
|
||||
<th class="header"></th>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block before_point %}
|
||||
{% if is_admin %}
|
||||
<td>
|
||||
<form action="{{ kick_url }}" method="POST" class="kick-form">
|
||||
{% csrf_token %}
|
||||
<input type="hidden" name="user" value="{{ user.id }}">
|
||||
<a href="#" class="button">{{ _('Kick') }}</a>
|
||||
</form>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue