summaryrefslogtreecommitdiffstats
path: root/templates/packages/details.html
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-03-08 12:11:02 -0800
committereliott <eliott@cactuswax.net>2008-03-08 12:11:02 -0800
commit3e31808521e990b3b86d25de7d49cdd90a2de29f (patch)
tree610986402708677b9cccf3c8d2632177173789ed /templates/packages/details.html
parent4d1977f24e062370efd307cbe51d4cd826828362 (diff)
downloadarchweb-3e31808521e990b3b86d25de7d49cdd90a2de29f.tar.gz
archweb-3e31808521e990b3b86d25de7d49cdd90a2de29f.zip
More changes to the multiarch model.
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r--templates/packages/details.html20
1 files changed, 9 insertions, 11 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html
index a0e78210..1435557b 100644
--- a/templates/packages/details.html
+++ b/templates/packages/details.html
@@ -6,11 +6,6 @@
<h2 class="title">{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h2>
<div style="float:right" class="listing">
<ul class="small">
- {% if origin_repo %}
- <li><a href="http://cvs.archlinux.org/cgi-bin/viewcvs.cgi/{{ pkg.category.category }}/{{ pkg.pkgname }}/?cvsroot={{ origin_repo }}&amp;only_with_tag=TESTING">View CVS Entries</a></li>
- {% else %}
- <li><a href="http://cvs.archlinux.org/cgi-bin/viewcvs.cgi/{{ pkg.category.category }}/{{ pkg.pkgname }}/?cvsroot={{ pkg.repo.name }}&amp;only_with_tag=CURRENT">View CVS Entries</a></li>
- {% endif %}
<li><a href="/packages/files/{{ pkg.id }}/">View File List</a></li>
<li>
{% if pkg.needupdate %}
@@ -37,12 +32,12 @@
</div>
<table class="listing">
<tr>
+ <th>Architecture:</th>
+ <td>{{ pkg.arch.name }}</td>
+ </tr><tr>
<th>Repository:</th>
<td>{{ pkg.repo.name }}</td>
</tr><tr>
- <th>Category:</th>
- <td>{{ pkg.category.category }}</td>
- </tr><tr>
<th>Description:</th>
<td>{{ pkg.pkgdesc }}</td>
</tr><tr>
@@ -66,11 +61,14 @@
{{ pkg.depends_urlize }}
</ul>
</div>
- </td><td colspan="2" valign="top">
+ </td>
+ </tr>
+ <tr>
+ <td valign="top">
<div class="listing">
- <h4>Sources:</h4>
+ <h4>Required By:</h4>
<ul style="font-size:small;list-style:none">
- {{ pkg.sources_urlize }}
+ {{ pkg.required_by_urlize }}
</ul>
</div>
</td>