clone of github.com/decent-newsroom/newsroom
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
527 B

{% if app.user %}
<div class="panel-section">
<p>Your article will be published to the following relays.</p>
<small>You'll be able to select a subset in the future.</small>
{% set relays = app.user.relays %}
{% if relays and relays|length > 0 %}
<ul>
{% for relay in relays %}
<li>{{ relay }}</li>
{% endfor %}
</ul>
{% else %}
<p>No relays found.</p>
{% endif %}
</div>
{% endif %}