summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/sheet_permission_detail.html
blob: aaf88b0340b872bc77480df4d5a4a6bbe867093a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% load i18n ishtar_helpers window_tables %}

{% if item|user_can_do:full_permission %}
<h3>{{table_label}}</h3>
<div class="alert alert-info" role="alert">
    <i class="fa fa-info-circle" aria-hidden="true"></i> &nbsp;
    {% trans "Permission on all items" %}
</div>
{% else %}
{% if has_own_permission %}
{% dynamic_table_document table_label table_name permission item.pk '' output %}
{% endif %}
{% endif %}