From dd4510f3717982f4bb488e52f486507c25d42987 Mon Sep 17 00:00:00 2001 From: Nicolas F Date: Mon, 26 Mar 2018 01:27:28 +0200 Subject: [PATCH] Fix user page ban list styling for multiple bans (#460) Change each ban to be a bullet point in an unordered list. --- nyaa/templates/user.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nyaa/templates/user.html b/nyaa/templates/user.html index 759803a..c391563 100644 --- a/nyaa/templates/user.html +++ b/nyaa/templates/user.html @@ -78,13 +78,13 @@ {% if user.is_banned or bans %}
-

+

    {% for ban in bans %} - #{{ ban.id }} +
  • #{{ ban.id }} by {{ ban.admin.username }} - for {{ ban.reason }} + for {{ ban.reason }}
  • {% endfor %} -

    +