summaryrefslogtreecommitdiffstats
path: root/templates/devel
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2008-03-23 03:51:01 +0100
committereliott <eliott@cactuswax.net>2008-03-23 03:51:01 +0100
commit7640082d14af2827ab22caa6dce3575f5112d7cf (patch)
tree6fb40e5c0dc734f5646166708b1e39ab5c30859d /templates/devel
parent37361f664f5092d5f4cc7bb2a20e1e86cbbf558d (diff)
downloadarchweb-7640082d14af2827ab22caa6dce3575f5112d7cf.tar.gz
archweb-7640082d14af2827ab22caa6dce3575f5112d7cf.tar.xz
Refactored the model to remove arch and repo tables.
Refactored the model to remove the arch and repo tables. Those data points are now encapsulated in the package table as an ENUM field. Changes to models and templates as needed.
Diffstat (limited to 'templates/devel')
-rw-r--r--templates/devel/siteindex.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/devel/siteindex.html b/templates/devel/siteindex.html
index 3cbf08a..9747470 100644
--- a/templates/devel/siteindex.html
+++ b/templates/devel/siteindex.html
@@ -107,8 +107,8 @@
<table id="repolinks">
{% for repo in repos %}
<tr>
- <th><a href="/packages/?repo={{ repo.name }}">{{ repo.name }}</a></th>
- <td>{{ repo.last_update|date:"Y-m-d H:i" }}</td>
+ <th><a href="/packages/?repo={{ repo }}">{{ repo }}</a></th>
+ <td>{{ repo }}</td>
</tr>
{% endfor %}
</table>