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