list.html 367 B

1234567
  1. {% extends "admin/admin/list.html" %}
  2. {% block table_row scoped %}
  3. <td class="lead-cell">
  4. <strong>{{ _(item.name) }}</strong>{% if item.token %} <span class="label label-important">{% trans %}System Role{% endtrans %}</span>{% elif item.protected %} <span class="label label-info">{% trans %}Protected Role{% endtrans %}</span>{% endif %}
  5. </td>
  6. {% endblock%}