non-owners can't add users to groups

- hide add-user pages from non-owners
- hide user searchbox from non-owners
- fix find-user searchbox being in wrong place where no results
This commit is contained in:
Hugh Rundle
2021-10-02 14:41:23 +10:00
parent 5237e88aba
commit 70e0128052
3 changed files with 23 additions and 5 deletions

View File

@ -61,6 +61,7 @@
{% include "snippets/pagination.html" with page=items %}
</section>
{% if group.user == request.user %}
<section class="column is-one-quarter">
<div class="block">
<h2 class="title is-5">Find new members</h2>
@ -78,6 +79,7 @@
</form>
</div>
</section>
{% endif %}
</div>
{% endblock %}

View File

@ -3,7 +3,6 @@
{% load humanize %}
{% if suggested_users %}
<div class="columns is-mobile scroll-x mb-0">
{% for user in suggested_users %}
<div class="column is-flex is-flex-grow-0">
<div class="box has-text-centered is-shadowless has-background-white-bis m-0">
@ -37,7 +36,7 @@
</div>
{% endfor %}
{% else %}
No potential members found for "{{ query }}"
<div >
No potential members found for "{{ query }}"
</div>
{% endif %}
</div>