list.html 433 B

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