See the README for current tweaks

This commit is contained in:
2023-05-31 11:51:12 +01:00
parent 97407e9532
commit a67214d024
18 changed files with 1260 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
{% extends "@admin/pages/roles.html.twig" %}
{% block body_matter %}
<div class="row">
<div class="col-md-12">
<div id="widget-roles" class="box box-primary">
<div class="box-header">
<h3 class="box-title"><i class="fas fa-fw fa-id-card"></i> {{translate('ROLE', 2)}}</h3>
{% include "tables/table-tool-menu.html.twig" %}
</div>
<div class="panel-body">
{% include "tables/roles.html.twig" with {
"table" : {
"id" : "table-roles"
}
}
%}
</div>
<div class="box-footer">
{% if (checkAccess('create_role')) %}
<button type="button" class="btn btn-success js-role-create">
<i class="fas fa-plus-square"></i> {{translate("ROLE.CREATE")}}
</button>
{% endif %}
</div>
</div>
</div>
</div>
{% endblock %}