add app user management allauth
This commit is contained in:
20
templates/wallet_api/role_info.html
Normal file
20
templates/wallet_api/role_info.html
Normal file
@@ -0,0 +1,20 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user