BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

privilege-matrix.twig 1.3KB

123456789101112131415161718192021222324252627282930
  1. <table width="100%">
  2. <tr class="colhead">
  3. <td rowspan="2" style="vertical-align: bottom">Primary Class {{ star|raw }} <br /><br />Privilege</td>
  4. {% for c in class_list %}
  5. <td style="padding: 0;"><div class="rot90-container"><div class="rot90">
  6. <a href="tools.php?action=permissions&amp;id={{ c.id }}">{{ c.name }}</a>
  7. </div></div></td>
  8. {% endfor %}
  9. </tr>
  10. <tr class="colhead">
  11. {% for c in class_list %}
  12. <td style="padding: 0; text-align: center; font-weight: normal;">{{ c.primary ? star|raw : '' }}</td>
  13. {% endfor %}
  14. </tr>
  15. {% for p in privilege %}
  16. <tr>
  17. <td{{ p.orphan ? ' title="This is an orphaned privilege" style="color: orangered; font-weight: bold;"' : '' }} title="{{ p.description }}">{{ p.name }}</td>
  18. {% for c in class_list %}
  19. <td style="text-align: center;" title="{{ c.name }} {{ c.id in p.can ? 'can' : 'cannot' }} {{ p.description }}">
  20. <a href="tools.php?action=permissions&amp;id={{ c.id }}">{{ c.id in p.can ? tick : '&middot;' }}</a></td>
  21. {% endfor %}
  22. </tr>
  23. {% endfor %}
  24. </table>
  25. <br />
  26. <div class="box pad">Any privileges marked <span style="color: orangered">in
  27. red</span> are orphaned privileges that were found in the database
  28. (in the <tt>permissions.Values</tt> column) but no longer connected to anything
  29. in the code. They should be cleaned out by hand.</div>