b3d582f665
[TWIG] Cards are now divided into blocks and macros, additional macros done, attachments page no longer inside cards directory [CARDS][Navigation] Now using macros to create section, details, and nav elements
72 lines
3.7 KiB
Twig
72 lines
3.7 KiB
Twig
{% block rightpanel %}
|
|
<label class="panel-right-icon" for="toggle-panel-right" tabindex="-1">{{ icon('chevron-left', 'icon icon-right') | raw }}</label>
|
|
<a id="anchor-right-panel" class="anchor-hidden" tabindex="0" title="{{ 'Press tab followed by a space to access right panel' | trans }}"></a>
|
|
<input type="checkbox" id="toggle-panel-right" tabindex="0" title="{{ 'Open right panel' | trans }}" {% if app.request.get('_route') == 'conversation_reply_to' %}checked{% endif %}>
|
|
|
|
<aside class="section-panel section-panel-right">
|
|
<section class="panel-content accessibility-target">
|
|
{% set prepend_right_panel = handle_event('PrependRightPanel', request) %}
|
|
{% for widget in prepend_right_panel %}
|
|
{{ widget | raw }}
|
|
{% endfor %}
|
|
|
|
{% set blocks = handle_event('AppendRightPostingBlock', request) %}
|
|
{% if blocks['post_form'] is defined %}
|
|
<section class="frame-section" title="{{ 'Create a new note.' | trans }}">
|
|
<details class="section-details-title" open="open" title="{{ 'Expand if you want to access more options.' | trans }}">
|
|
<summary class="details-summary-title">
|
|
<span>
|
|
{% if app.request.get('_route') == 'conversation_reply_to' %}
|
|
{{ "Reply to note" | trans }}
|
|
{% else %}
|
|
{{ "Create a note" | trans }}
|
|
{% endif %}
|
|
</span>
|
|
</summary>
|
|
|
|
{% if app.request.get('_route') == 'conversation_reply_to' %}
|
|
<section class="frame-section-padding">
|
|
{% set prepend_posting_form = handle_event('PrependPostingForm', request) %}
|
|
{% for widget in prepend_posting_form %}
|
|
{{ widget | raw }}
|
|
{% endfor %}
|
|
</section>
|
|
{% endif %}
|
|
|
|
<section class="section-form">
|
|
{{ form_start(blocks['post_form']) }}
|
|
{{ form_errors(blocks['post_form']) }}
|
|
{% if blocks['post_form'].in is defined %}
|
|
{{ form_row(blocks['post_form'].in) }}
|
|
{% endif %}
|
|
{{ form_row(blocks['post_form'].visibility) }}
|
|
{{ form_row(blocks['post_form'].content_type) }}
|
|
{{ form_row(blocks['post_form'].content) }}
|
|
{{ form_row(blocks['post_form'].attachments) }}
|
|
|
|
<details class="section-details-subtitle">
|
|
<summary class="details-summary-subtitle">
|
|
<strong>
|
|
{{ "Additional options" | trans }}
|
|
</strong>
|
|
</summary>
|
|
<section class="section-form">
|
|
{{ form_row(blocks['post_form'].language) }}
|
|
{{ form_row(blocks['post_form'].tag_use_canonical) }}
|
|
</section>
|
|
</details>
|
|
{{ form_rest(blocks['post_form']) }}
|
|
{{ form_end(blocks['post_form']) }}
|
|
</section>
|
|
</details>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% set extra_blocks = get_right_panel_blocks({'path': app.request.get('_route'), 'request': app.request, 'vars': right_panel_vars | default }) %}
|
|
{% for block in extra_blocks %}
|
|
{{ block | raw }}
|
|
{% endfor %}
|
|
</section>
|
|
</aside>
|
|
{% endblock rightpanel %}
|