peach-workspace/peach-web/templates/scuttlebutt/peers.html.tera

22 lines
1.1 KiB
Plaintext

{%- extends "nav" -%}
{%- block card %}
<!-- SCUTTLEBUTT PEERS -->
<div class="card center">
{# only render the peer menu elements if the sbot is active #}
{%- if sbot_state == "active" %}
<div class="card-container">
<!-- BUTTONS -->
<div id="buttons">
<a id="search" class="button button-primary center" href="/scuttlebutt/search" title="Search for a peer">Search</a>
<a id="friends" class="button button-primary center" href="/scuttlebutt/friends" title="List friends">Friends</a>
<a id="follows" class="button button-primary center" href="/scuttlebutt/follows" title="List follows">Follows</a>
<a id="blocks" class="button button-primary center" href="/scuttlebutt/blocks" title="List blocks">Blocks</a>
<a id="invites" class="button button-primary center" href="/scuttlebutt/invites" title="Create invites">Invites</a>
</div>
</div>
{%- endif %}
<!-- FLASH MESSAGE -->
{% include "snippets/flash_message" %}
</div>
{%- endblock card -%}