NDOJ/templates/organization/users-table.html
2023-01-27 17:11:10 -06:00

19 lines
474 B
HTML

{% extends "user/users-table.html" %}
{% block before_point_head %}
{% if can_edit %}
<th class="header"></th>
{% endif %}
{% endblock %}
{% block before_point %}
{% if can_edit %}
<td>
<form action="{{ kick_url }}" method="POST" class="kick-form">
{% csrf_token %}
<input type="hidden" name="user" value="{{ user.id }}">
<a href="#" class="button small">{{ _('Kick') }}</a>
</form>
</td>
{% endif %}
{% endblock %}