summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/view_user.html
diff options
context:
space:
mode:
Diffstat (limited to 'apioforum/templates/view_user.html')
-rw-r--r--apioforum/templates/view_user.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/apioforum/templates/view_user.html b/apioforum/templates/view_user.html
new file mode 100644
index 0000000..c9d9c1c
--- /dev/null
+++ b/apioforum/templates/view_user.html
@@ -0,0 +1,22 @@
+{% from 'common.html' import disp_post,ts %}
+{% extends 'base.html' %}
+{% block header %}
+<h1>{%block title %}{{user.username|e}}{% endblock %}</h1>
+{% endblock %}
+
+{%block content%}
+<div class="user_info">
+ <div class="user_bio_quote">
+ <div class="user_bio">{{rendered_bio|safe}}</div>
+ <p class="user_bio_attribution">— {{user.username|e}}</p>
+ </div>
+ <dl>
+ <dt>joined</dt>
+ {% if user.joined %}
+ <dd>{{ts(user.joined)}}</dd>
+ {% else %}
+ <dd>a very long time ago</dd>
+ {% endif %}
+ </dl>
+</div>
+{% endblock %}