From f6fad2f95ee5d6173987b3c938a33194578754b3 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Mon, 16 Nov 2020 21:30:49 +0100 Subject: [PATCH] Oops, forgot to add user.html. --- app/templates/user.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 app/templates/user.html diff --git a/app/templates/user.html b/app/templates/user.html new file mode 100644 index 0000000..1f556d4 --- /dev/null +++ b/app/templates/user.html @@ -0,0 +1,41 @@ + + +{% extends "base.html" %} +{% block content %} +{% if readmes %} +
+{% for subnode in readmes %} + README by @{{user}} +{{ subnode.content|markdown|linkify|safe }} +{% endfor %} +
+{% endif %} + +
+

Subnodes by @{{user}}

+{% if not subnodes %} +No subnodes found for the given term or path. +

+Go back to /nodes? +{% endif %} + +{% for subnode in subnodes %} +{{subnode.wikilink}}
+{% endfor %} +
+ +{% endblock %}