forums.html 1007 B

1234567891011121314151617181920212223242526272829303132
  1. {% extends "admin/admin/list.html" %}
  2. {% load i18n %}
  3. {% load l10n %}
  4. {% load url from future %}
  5. {% from "admin/macros.html" import page_title %}
  6. {% import "_forms.html" as form_theme with context %}
  7. {% block title %}{{ page_title(parent=_(action.role.name), title=_("Role Forum Permissions")) }}{% endblock %}
  8. {% block table_head scoped %}
  9. <th>{% trans %}Forum{% endtrans %}</th>
  10. <th class="span3">{% trans %}Role{% endtrans %}</th>
  11. {% endblock %}
  12. {% block table_row scoped %}
  13. <td class="lead-cell" style="padding-left: {{ 8 + ((item.level - 1) * 24) }}px;">
  14. <i class="icon-{{ forum_icon(item.type) }}"></i> <strong>{{ item.name }}</strong>
  15. </td>
  16. <td>
  17. {{ form_theme.field_widget(table_form['forum_' + item.pk|string], attrs={'form': 'table_form'}, width=3) }}
  18. </td>
  19. {% endblock %}
  20. {% macro forum_icon(forum_type) -%}
  21. {%- if forum_type == 'category' -%}
  22. folder-open
  23. {%- elif forum_type == 'forum' -%}
  24. list
  25. {%- else -%}
  26. globe
  27. {%- endif -%}
  28. {%- endmacro %}