2022-11-17 16:43:00 -08:00
|
|
|
{% extends "identity/base.html" %}
|
2022-11-05 13:17:27 -07:00
|
|
|
|
|
|
|
{% block title %}Select Identity{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-12 22:21:52 -08:00
|
|
|
<section class="icon-menu">
|
2022-11-05 13:17:27 -07:00
|
|
|
{% for identity in identities %}
|
2022-11-05 19:10:39 -07:00
|
|
|
<a class="option" href="{{ identity.urls.activate }}">
|
2022-12-12 06:22:11 -08:00
|
|
|
<img src="{{ identity.local_icon_url.relative }}">
|
2022-11-12 22:21:52 -08:00
|
|
|
<span class="handle">
|
2022-12-14 23:50:54 -08:00
|
|
|
{{ identity.html_name_or_handle }}
|
2022-11-12 22:21:52 -08:00
|
|
|
<small>@{{ identity.handle }}</small>
|
|
|
|
</span>
|
2022-12-23 21:46:27 -08:00
|
|
|
<button class="right secondary" _="on click go to url {{ identity.urls.view }} then halt">View</button>
|
2022-11-05 19:10:39 -07:00
|
|
|
</a>
|
2022-11-05 13:17:27 -07:00
|
|
|
{% empty %}
|
|
|
|
<p class="option empty">You have no identities.</p>
|
|
|
|
{% endfor %}
|
|
|
|
<a href="/identity/create/" class="option new">
|
|
|
|
<i class="fa-solid fa-plus"></i> Create a new identity
|
|
|
|
</a>
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|