Fix org user
This commit is contained in:
parent
982c975a20
commit
1b3b27f1d9
2 changed files with 3 additions and 3 deletions
|
@ -1,13 +1,13 @@
|
||||||
{% extends "user/users-table.html" %}
|
{% extends "user/users-table.html" %}
|
||||||
|
|
||||||
{% block before_point_head %}
|
{% block before_point_head %}
|
||||||
{% if is_admin %}
|
{% if can_edit %}
|
||||||
<th class="header"></th>
|
<th class="header"></th>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block before_point %}
|
{% block before_point %}
|
||||||
{% if is_admin %}
|
{% if can_edit %}
|
||||||
<td>
|
<td>
|
||||||
<form action="{{ kick_url }}" method="POST" class="kick-form">
|
<form action="{{ kick_url }}" method="POST" class="kick-form">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
{% if is_admin %}
|
{% if can_edit %}
|
||||||
<style>#users-table td:nth-child(4), #users-table th:nth-child(4) {
|
<style>#users-table td:nth-child(4), #users-table th:nth-child(4) {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue