summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/packages/search.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/packages/search.html b/templates/packages/search.html
index a64b92a..a5b6592 100644
--- a/templates/packages/search.html
+++ b/templates/packages/search.html
@@ -78,6 +78,7 @@
<th><a href="{% buildsortqs "pkgname" %}">Name</a></th>
<th>Version</th>
<th>Description</th>
+ <th>Maintainer</th>
<th><a href="{% buildsortqs "-last_update" %}">Last Updated</a></th>
</tr>
{% for pkg in results %}
@@ -92,6 +93,7 @@
<td>{{ pkg.pkgver }}-{{ pkg.pkgrel }}</td>
{% endif %}
<td>{{ pkg.pkgdesc }}</td>
+ <td>{{ pkg.maintainer }}</td>
<td>{{ pkg.last_update|date:"Y-m-d" }}</td>
</tr>
{% endfor %}