mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
73 lines
2.4 KiB
Twig
73 lines
2.4 KiB
Twig
{% extends 'ChillMainBundle::Admin/layout_permissions.html.twig' %}
|
|
|
|
{% block title %}{{ 'Permission group "%name%"'|trans({ '%name%': entity.name }) }}{% endblock %}
|
|
|
|
{% block admin_content -%}
|
|
<h1>{{ 'Permission group "%name%"'|trans({ '%name%': entity.name }) }}</h1>
|
|
|
|
<table class="record_properties">
|
|
<tbody>
|
|
<tr>
|
|
<th>{{ 'Name'|trans }}</th>
|
|
<td>{{ entity.name }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% if role_scopes_sorted|length > 0 %}
|
|
<h2>{{ 'Grant those permissions'|trans }} :</h2>
|
|
|
|
{% for title, role_scopes in role_scopes_sorted %}
|
|
<h3>{{ title|default('Unclassified')|trans }}</h3>
|
|
<table class="striped rounded">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ 'Role'|trans }}</th>
|
|
<th>{{ 'Circle'|trans }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
{% for role_scope in role_scopes %}
|
|
<tr>
|
|
<td>
|
|
{{ role_scope.role|trans }}
|
|
{% if expanded_roles[role_scope.role]|length > 1 %}
|
|
<br/>
|
|
<small>{{ 'Which implies'|trans }} : {% for role in expanded_roles[role_scope.role] %}{{ role|trans }}{% if not loop.last %}, {% endif %}{% endfor %}</small>
|
|
{% endif %}
|
|
</td>
|
|
<td>{%- if role_scope.scope is not null -%}
|
|
{{ role_scope.scope.name|localize_translatable_string }}
|
|
{%- else -%}
|
|
<em>N/A</em>
|
|
{%- endif -%}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<p>{{ 'This group does not provide any permission'|trans }}.
|
|
<a href="{{ path('admin_permissionsgroup_edit', { 'id': entity.id }) }}">
|
|
{{ 'add permissions'|trans|capitalize }}</a></p>
|
|
{% endif %}
|
|
|
|
<ul class="record_actions">
|
|
|
|
<li>
|
|
<a href="{{ path('admin_permissionsgroup_edit', { 'id': entity.id }) }}" class="sc-button bt-edit">
|
|
{{ 'Edit'|trans }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ path('admin_permissionsgroup') }}" class="sc-button bt-cancel">
|
|
{{ 'Back to the list'|trans }}
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
{% endblock %}
|