{% macro posting(form) %}
{% endmacro %}
{% macro posting_section_vanilla(widget) %}
{{ "Create a note" | trans }}
{% import _self as forms %}
{{ forms.posting(widget) }}
{% endmacro %}
{% macro posting_section_reply(widget, extra) %}
{{ "Reply to note" | trans }}
{% for block in extra %}
{% endfor %}
{% import _self as forms %}
{{ forms.posting(widget) }}
{% endmacro %}
{% block rightpanel %}
{% import _self as this %}
{% endblock rightpanel %}