From b1c349cc3558b4642a700a489482ff95b038ce56 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Mon, 11 Jun 2018 22:49:25 +0100 Subject: Add comment system --- app/templates/threads/view.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 app/templates/threads/view.html (limited to 'app/templates/threads/view.html') diff --git a/app/templates/threads/view.html b/app/templates/threads/view.html new file mode 100644 index 0000000..397fba3 --- /dev/null +++ b/app/templates/threads/view.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block title %} +Threads +{% endblock %} + +{% block content %} +

{% if thread.private %}🔒 {% endif %}{{ thread.title }}

+ + {% if thread.package %} +

+ Package: {{ thread.package.title }} +

+ {% endif %} + + {% if thread.private %} + + This thread is only visible to its creator, the package owner, and users of + Editor rank or above. + + {% endif %} + + {% from "macros/threads.html" import render_thread %} + {{ render_thread(thread, current_user) }} +{% endblock %} -- cgit v1.2.3