diff options
-rw-r--r-- | packages/views.py | 11 | ||||
-rw-r--r-- | templates/packages/signoffs.html | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/packages/views.py b/packages/views.py index e986409c..49ab9a0a 100644 --- a/packages/views.py +++ b/packages/views.py @@ -151,8 +151,17 @@ def unflag(request, pkgid): def signoffs(request): packages = Package.objects.filter(repo__name="Testing").order_by("pkgname") + package_list = [] + other_packages = Package.objects.exclude(repo__name="Testing") + for package in packages: + other_package = other_packages.filter(pkgname=package.pkgname) + if len(other_package): + repo = other_package[0].repo.name + else: + repo = "Unknown" + package_list.append((package, repo)) return render_to_response('packages/signoffs.html', - RequestContext(request, {'packages': packages})) + RequestContext(request, {'packages': package_list})) def signoff_package(request, arch, pkgname): pkg = get_object_or_404(Package, 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> |