aboutsummaryrefslogtreecommitdiff
path: root/app/templates/threads
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-07-10 19:46:14 +0100
committerrubenwardy <rw@rubenwardy.com>2020-07-10 19:46:14 +0100
commitd91f537bdd4915448a189b238051905975324d71 (patch)
tree85c02f40c2d61f154b14aa816c4a85514cbe677d /app/templates/threads
parent436a4cce2b819740d10721e320c3c80f07c0c27b (diff)
downloadcheatdb-d91f537bdd4915448a189b238051905975324d71.tar.xz
Improve thread list style
Diffstat (limited to 'app/templates/threads')
-rw-r--r--app/templates/threads/list.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/templates/threads/list.html b/app/templates/threads/list.html
index 7e27325..2d86190 100644
--- a/app/templates/threads/list.html
+++ b/app/templates/threads/list.html
@@ -8,5 +8,7 @@ Threads
<h1>Threads</h1>
{% from "macros/threads.html" import render_threadlist %}
- {{ render_threadlist(threads) }}
+ <div class="list-group">
+ {{ render_threadlist(threads) }}
+ </div>
{% endblock %}