{# styles/infozone/template/forumlist_body.html #} {% set iz_skip_cat = false %} {% set iz_open_cat = false %} {% for forumrow in forumrow %} {# --- CATEGORY ROWS --------------------------------------------------- #} {% if forumrow.S_IS_CAT or forumrow.S_FIRST_ROW or forumrow.S_NO_CAT %} {# Close the previous category/table if it was opened #} {% if iz_open_cat %} {% EVENT forumlist_body_category_footer %} {% set iz_open_cat = false %} {% endif %} {# Never skip categories; we may just relabel the legacy default category #} {% set iz_skip_cat = false %} {# Open the category/table if we are not skipping #} {% if not iz_skip_cat %} {% EVENT forumlist_body_category_header_before %}

{% if forumrow.S_IS_CAT %} {% if forumrow.FORUM_NAME|lower == 'your first category' %} Recent discussions {% else %} {{ forumrow.FORUM_NAME }} {% endif %} {% elseif forumrow.S_IS_LINK %} {{ L_LINKS }} {% else %} {{ L_FORUM }} {% endif %}

{% EVENT forumlist_body_category_header_row_prepend %} {% EVENT forumlist_body_category_header_row_append %} {% EVENT forumlist_body_category_header_after %} {% set iz_open_cat = true %} {% endif %} {% endif %} {# --- FORUM ROWS ------------------------------------------------------ #} {% if not forumrow.S_IS_CAT and not iz_skip_cat %} {% EVENT forumlist_body_forum_row_before %} {% EVENT forumlist_body_forum_row_prepend %} {% EVENT forumlist_body_forum_row_append %} {% EVENT forumlist_body_forum_row_after %} {% endif %} {% endfor %} {# Close the final opened category/table if needed #} {% if iz_open_cat %}
{{ L_TITLE }}
{% EVENT forumlist_body_category_footer %} {% endif %}