diff --git a/pagure/static/pagure.css b/pagure/static/pagure.css index f6cd533..151a0c3 100644 --- a/pagure/static/pagure.css +++ b/pagure/static/pagure.css @@ -867,3 +867,15 @@ span.CONFLICTS { .tabs .ui-tabs-active a:hover{ color: #e59728!important; } + +#pr_flags table{ + width: 100%; + border-spacing: 0; + border-collapse: collapse; + margin: 1em 0em 1em 0em; + color: black; +} + +#pr_flags table tr{ + margin-bottom: 1em; +} diff --git a/pagure/templates/pull_request.html b/pagure/templates/pull_request.html index 59d1995..a74be85 100644 --- a/pagure/templates/pull_request.html +++ b/pagure/templates/pull_request.html @@ -136,6 +136,21 @@ + +{% if pull_request.flags %} +
+ + {% for flag in pull_request.flags %} + + + + + + {% endfor %} +
{{ flag.percent }}%{{ flag.username }}{{ flag.comment }}
+
+{% endif %} + {% endif %}