summaryrefslogtreecommitdiffstats
path: root/templates/identity/view.html
blob: f0a8a02be8e1cad622a4fe0ca43c2ed7887697e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block title %}{{ identity }}{% endblock %}

{% block content %}
    <h1>{{ identity }} <small>{{ identity.handle }}</small></h1>

    {% for status in statuses %}
        {% include "statuses/_status.html" %}
    {% empty %}
        No statuses yet.
    {% endfor %}
{% endblock %}