aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/list.html
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-08-09 05:02:13 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-08-09 05:02:13 +0200
commit7f9cd0eb580b22a2e4597c48aec65002c6f19840 (patch)
treea3432feec0164bdfa25e9b91c147302a5458ff3a /pyenc/templates/list.html
parentRename some database stuff. (diff)
downloadpuppet-classifier-7f9cd0eb580b22a2e4597c48aec65002c6f19840.tar.gz
puppet-classifier-7f9cd0eb580b22a2e4597c48aec65002c6f19840.tar.xz
Rewrite static frontend.
Diffstat (limited to 'pyenc/templates/list.html')
-rw-r--r--pyenc/templates/list.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/pyenc/templates/list.html b/pyenc/templates/list.html
new file mode 100644
index 0000000..dd267c5
--- /dev/null
+++ b/pyenc/templates/list.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block content %}
+<h1>{{ title }}</h1>
+<ul>
+ {% for item in items %}
+ <li>{{ item|safe }}</li>
+ {% endfor %}
+</ul>
+{% endblock %}
+{# ft:jinja #}