From d0feced96b6fe24f810e7e54d4106622a39c41d4 Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Dec 24 2015 09:22:01 +0000 Subject: fixed flashed messages not working anymore --- diff --git a/pagure/static/koji.css b/pagure/static/koji.css index 697ea32..49fcc70 100644 --- a/pagure/static/koji.css +++ b/pagure/static/koji.css @@ -14,6 +14,11 @@ html border-bottom:1px solid #DDD; } +.notification-spacer +{ + background:#f3f3f3; +} + .repo-name { diff --git a/pagure/templates/master.html b/pagure/templates/master.html index fee1b72..d7b86ca 100644 --- a/pagure/templates/master.html +++ b/pagure/templates/master.html @@ -66,11 +66,19 @@ {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} +
{% for category, message in messages %} -
  • {{ message }}
  • + {% endfor %} - +
    +
    {% endif %} {% endwith %}