21 lines
459 B
HTML
21 lines
459 B
HTML
{% extends 'layouts/blank.html' %} {% block content %}
|
|
<h1>Role Permissions</h1>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Permission</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Role permissions will be dynamically loaded here -->
|
|
{{#each permissions}}
|
|
<tr>
|
|
<td>{{ this.permission }}</td>
|
|
<td>{{ this.description }}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
{% endblock content %}
|