{% import 'default/macro/macro.tpl' as display %} {% extends 'layout/layout_1_col.tpl'|get_template %} {% block content %} {% if origin == 'learnpath' %}
 
{% endif %} {% if forum_actions %}
{{ forum_actions }}
{% endif %} {% for post in posts %} {% set post_data %}
{{ post.user_data }}
{% set highlight = '' %} {% if post.current %} {% set highlight = 'alert alert-danger' %} {% endif %} {% set highlight_revision = '' %} {% if post.is_a_revision %} {% set highlight_revision = 'forum_revision' %} {% endif %}
{{ post.post_title }} {% if post.is_a_revision %} {{ 'ProposedRevision' | get_lang }} {{ post.flag_revision }} {% endif %}
{{ post.post_data }}
{{ post.post_attachments }}
{{ post.post_buttons }}
{% endset %}
{{ display.panel('', post_data) }}
{% endfor %} {{ form }} {% endblock %}