[copr] master: Display build ids in builds table. (7969871)

bkabrda at fedorahosted.org bkabrda at fedorahosted.org
Mon Jan 14 06:53:32 UTC 2013


Repository : http://git.fedorahosted.org/cgit/copr.git

On branch  : master

>---------------------------------------------------------------

commit 796987131c4377f9d691c93ba1fc9bd234d0cfc8
Author: Bohuslav Kabrda <bkabrda at redhat.com>
Date:   Mon Jan 14 07:53:07 2013 +0100

    Display build ids in builds table.


>---------------------------------------------------------------

 .../coprs/templates/coprs/_builds_table.html       |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/coprs_frontend/coprs/templates/coprs/_builds_table.html b/coprs_frontend/coprs/templates/coprs/_builds_table.html
index f6840d9..072a7e3 100644
--- a/coprs_frontend/coprs/templates/coprs/_builds_table.html
+++ b/coprs_frontend/coprs/templates/coprs/_builds_table.html
@@ -4,6 +4,7 @@
   {% if builds %}
     <table class=builds-table>
       <tr>
+        <th>Id</th>
         <th>Submitted on</th>
         <th>Submitted by</th>
         <th>Started on</th>
@@ -14,6 +15,7 @@
       </tr>
     {% for build in builds %}
       <tr class=build-{{ build.state }}>
+        <td>{{ build.id }}</td>
         <td>{{ build.submitted_on|date_from_secs }}</td>
         <td>{{ build.user.name }}</td>
         <td>{{ build.started_on|date_from_secs or 'Not yet' }}</td>
@@ -29,7 +31,7 @@
         </td>
       </tr>
       <tr>
-        <td colspan=7>
+        <td colspan=8>
           <h4>Package URLs:</h4>
           <ul class=packages-list>
             {% if build.pkgs is not none %}



More information about the copr-devel mailing list