NDOJ/templates/organization/users-table.html

20 lines
524 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% 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 %}