+ {% include 'editor/panels/_relays.html.twig' with { form: form } %}
+
+
{# Media panel temporarily hidden - will be redesigned later
+
Relays
+
Your article will be published to the following relays.
+
You'll be able to select a subset in the future.
+ {% set relays = app.user.relays %}
+ {% if relays and relays|length > 0 %}
+
+ {% for relay in relays %}
+ - {{ relay }}
+ {% endfor %}
+
+ {% else %}
+
No relays found.
+ {% endif %}
+
+{% endif %}