From 684707f6cf12c2af600720c7c5dd7d166d61f06b Mon Sep 17 00:00:00 2001 From: Michael Watters Date: Nov 21 2018 19:08:43 +0000 Subject: Add build status to pull requests page --- diff --git a/pagure/templates/_render_pullrequests.html b/pagure/templates/_render_pullrequests.html index f886ce2..53ba1e2 100644 --- a/pagure/templates/_render_pullrequests.html +++ b/pagure/templates/_render_pullrequests.html @@ -141,6 +141,33 @@ {% endfor %} + + {% if request.flags %} +
+

Build status:

+ {% for flag in request.flags %} + + + {{ flag.username }} + +
+ + {{ flag.status }} + {%- if flag.percent %} ({{ flag.percent }}%) {%- endif %} +
+ +
+ {{ flag.comment }} +
+ {{ flag.date_created | humanize }}
+
+
+
+ {% endfor %} +
+ {% endif %} + + {% endif %}