summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-05-04 10:31:24 -0500
committerDan McGee <dan@archlinux.org>2010-05-04 10:31:24 -0500
commitc4a953c38834fb168309306f7d4f8949165d16dd (patch)
treeb2070e78c083e8306fbd2bd077fce7ae2a10c467
parent8291b1d5b79626a4ac262f15bd0cd0103c0b3949 (diff)
downloadarchweb-c4a953c38834fb168309306f7d4f8949165d16dd.tar.gz
archweb-c4a953c38834fb168309306f7d4f8949165d16dd.zip
todo: fix maintainer display text
We were showing 'orphan' for every package due to our maintainer information moving. This is going to make the page a bit slow again, but we'll try and fix that later using some other tricks if possible. Fixes FS#18920. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--templates/todolists/view.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/todolists/view.html b/templates/todolists/view.html
index 5af6da81..ae8a6563 100644
--- a/templates/todolists/view.html
+++ b/templates/todolists/view.html
@@ -28,7 +28,7 @@
<td><a href="{{ pkg.pkg.get_absolute_url }}">{{ pkg.pkg.pkgname }}</a></td>
<td>{{ pkg.pkg.arch.name }}</td>
<td>{{ pkg.pkg.repo.name|capfirst }}</td>
- <td>{{ pkg.pkg.maintainer.get_full_name|default:"Orphan" }}</td>
+ <td>{{ pkg.pkg.maintainers|join:', ' }}</td>
<td>
{% if pkg.complete %}
<a href="/todo/flag/{{ list.id }}/{{ pkg.id }}/"><span style="color:blue">Complete</span></a>