diff options
author | Dusty Phillips <buchuki@gmail.com> | 2009-04-13 22:11:10 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2009-04-13 22:14:53 -0400 |
commit | bb93f05f56f2b22a662f85736549a72735864b20 (patch) | |
tree | 0426384992ef3845ce86121f8782232b9e25f3be /templates/packages/signoffs.html | |
parent | a9fd048f5499529a264ac7bf3ea52a14e1cbd97e (diff) |
FS#11325. Add a 'Target Repo' column to the signoffs page.
Diffstat (limited to 'templates/packages/signoffs.html')
-rw-r--r-- | templates/packages/signoffs.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/packages/signoffs.html b/templates/packages/signoffs.html index e422adb3..cb6a848e 100644 --- a/templates/packages/signoffs.html +++ b/templates/packages/signoffs.html @@ -10,15 +10,17 @@ <th>Package</th> <th>Version</th> <th>Last Updated</th> + <th>Target Repo</th> <th>Approved</th> <th>Signoff</th> </tr> - {% for pkg in packages %} + {% for pkg,target in packages %} <tr class="{% cycle pkgr2,pkgr1 %}"> <td>{{ pkg.arch.name }}</td> <td><a href="{{ pkg.get_absolute_url }}">{{ pkg.pkgname }}</a></td> <td>{{ pkg.pkgver }}-{{ pkg.pkgrel }}</td> <td>{{ pkg.last_update }}</td> + <td>{{ target }}</td> <td class="signoff_{{pkg.approved_for_signoff|yesno}}">{{ pkg.approved_for_signoff|yesno:"Yes,No" }}</td> <td> <ul> |