acl.html 463 B

123456789101112131415161718192021
  1. {% load i18n %}
  2. {% for provider in acl %}
  3. <h4>{{ provider }}</h4>
  4. <table>
  5. <thead>
  6. <tr>
  7. <th style="width: 180px;">{% trans 'Permission' %}</th>
  8. <th>{% trans 'Value' %}</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. {% for perm, value in provider.acl.items %}
  13. <tr>
  14. <td>{{ perm }}</td>
  15. <td>{{ value|default:"None" }}</td>
  16. </tr>
  17. {% endfor %}
  18. </tbody>
  19. </table>
  20. {% endfor %}