From 919ddcccecf1575d4b8de3aa28b65c30ee5cc47d Mon Sep 17 00:00:00 2001 From: manetta Date: Fri, 4 Dec 2020 17:43:30 +0100 Subject: [PATCH] hacked out the None --- stylesheet.css | 3 +++ templates/index.html | 12 +++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/stylesheet.css b/stylesheet.css index 0b2bd26..4cf6b14 100644 --- a/stylesheet.css +++ b/stylesheet.css @@ -21,6 +21,9 @@ th, td{ text-align: left; padding:0 1em 0 0; } + td.versions{ + min-width: 350px; + } hr{ border:0; border-bottom:1px solid; diff --git a/templates/index.html b/templates/index.html index fc6897c..172371d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -40,12 +40,14 @@ {% for v in pad.versions %}{{ v.type }} {% endfor %} - + - {% for magicword in pad.magicwords %} - {{ magicword }} - {{ allmagicwords.append(magicword) }} - {% endfor %} + {% for magicword in pad.magicwords %} + {{ magicword }} + {% if magicword %} +
{{ allmagicwords.append(magicword) }}
+ {% endif %} + {% endfor %}