list.html 512 B

1234567891011121314151617181920
  1. {% extends "admin/admin/list.html" %}
  2. {% load i18n %}
  3. {% load l10n %}
  4. {% load url from future %}
  5. {% block table_row scoped %}
  6. <td class="lead-cell" style="padding-left: {{ 8 + ((item.level - 1) * 24) }}px;">
  7. <i class="icon-{{ forum_icon(item.type) }}"></i> <strong>{{ item.name }}</strong>
  8. </td>
  9. {% endblock%}
  10. {% macro forum_icon(forum_type) -%}
  11. {%- if forum_type == 'category' -%}
  12. folder-open
  13. {%- elif forum_type == 'forum' -%}
  14. list
  15. {%- else -%}
  16. globe
  17. {%- endif -%}
  18. {%- endmacro %}