Fix org user

This commit is contained in:
cuom1999 2022-05-28 02:52:41 -05:00
parent 982c975a20
commit 1b3b27f1d9
2 changed files with 3 additions and 3 deletions

View file

@ -1,13 +1,13 @@
{% extends "user/users-table.html" %}
{% block before_point_head %}
{% if is_admin %}
{% if can_edit %}
<th class="header"></th>
{% endif %}
{% endblock %}
{% block before_point %}
{% if is_admin %}
{% if can_edit %}
<td>
<form action="{{ kick_url }}" method="POST" class="kick-form">
{% csrf_token %}

View file

@ -17,7 +17,7 @@
}
</style>
{% if is_admin %}
{% if can_edit %}
<style>#users-table td:nth-child(4), #users-table th:nth-child(4) {
border-right: none;
}