diff options
author | Andrew Godwin | 2022-11-05 14:17:27 -0600 |
---|---|---|
committer | Andrew Godwin | 2022-11-05 14:17:27 -0600 |
commit | d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7 (patch) | |
tree | dd356a933b8179a22e5da6e938acd96a175ac0d6 /templates/identity/view.html | |
download | takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.tar.gz takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.tar.bz2 takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.zip |
Initial commit (users and statuses)
Diffstat (limited to 'templates/identity/view.html')
-rw-r--r-- | templates/identity/view.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/identity/view.html b/templates/identity/view.html new file mode 100644 index 0000000..f0a8a02 --- /dev/null +++ b/templates/identity/view.html @@ -0,0 +1,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 %} |