forked from GNUsocial/gnu-social
Eliseu Amaro
184d0246a5
replaced with src/Twig/Rintime::getRightPanelBlocks [COMPONENTS] Re-ordered onAppendRightPanelBlock event calls arguments for improved consistency across events
62 lines
3.3 KiB
Twig
62 lines
3.3 KiB
Twig
{% block rightpanel %}
|
|
<a id="anchor-right-panel" class="anchor-hidden" title="{{ 'Press tab followed by a space to access right panel' | trans }}"></a>
|
|
<label class="panel-right-icon" for="panel-right-toggle"
|
|
tabindex="-1">{{ icon('chevron-left', 'icon icon-right') | raw }}</label>
|
|
<input type="checkbox" id="panel-right-toggle" tabindex="0" title="{{ 'Open right panel' | trans }}">
|
|
|
|
<div class="header-panel section-panel-right">
|
|
<aside class="panel-content accessibility-target">
|
|
|
|
{% set current_path = app.request.get('_route') %}
|
|
{% set blocks = handle_event('AppendRightPostingBlock', request) %}
|
|
{% if blocks['post_form'] is defined %}
|
|
<section class="section-widget" title="{{ 'Create a new note.' | trans }}">
|
|
<details class="section-widget-title-details" open="open"
|
|
title="{{ 'Expand if you want to access more options.' | trans }}">
|
|
<summary class="section-title-summary">
|
|
<h2>
|
|
{% set current_path = app.request.get('_route') %}
|
|
{% if current_path == 'conversation_reply_to' %}
|
|
{{ "Reply to note" | trans }}
|
|
{% else %}
|
|
{{ "Create a note" | trans }}
|
|
{% endif %}
|
|
</h2>
|
|
</summary>
|
|
|
|
<div class="section-form">
|
|
<fieldset>
|
|
{{ 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) }}
|
|
{{ form_row(blocks['post_form'].attachments) }}
|
|
|
|
<details class="section-widget-subtitle-details">
|
|
<summary class="section-subtitle-summary">
|
|
<strong>
|
|
{{ "Additional options" | trans }}
|
|
</strong>
|
|
</summary>
|
|
{{ form_row(blocks['post_form'].language) }}
|
|
{{ form_row(blocks['post_form'].tag_use_canonical) }}
|
|
</details>
|
|
{{ form_rest(blocks['post_form']) }}
|
|
{{ form_end(blocks['post_form']) }}
|
|
</fieldset>
|
|
</div>
|
|
</details>
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% set extra_blocks = get_right_panel_blocks({'path': current_path, 'request': app.request, 'vars': (right_panel_vars | default)}) %}
|
|
{% for block in extra_blocks %}
|
|
{{ block | raw }}
|
|
{% endfor %}
|
|
</aside>
|
|
</div>
|
|
{% endblock rightpanel %}
|