diff options
author | eliott <eliott@cactuswax.net> | 2008-03-22 19:51:01 -0700 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-03-22 19:51:01 -0700 |
commit | 7640082d14af2827ab22caa6dce3575f5112d7cf (patch) | |
tree | 6fb40e5c0dc734f5646166708b1e39ab5c30859d /templates/devel/siteindex.html | |
parent | 37361f664f5092d5f4cc7bb2a20e1e86cbbf558d (diff) |
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/siteindex.html')
-rw-r--r-- | templates/devel/siteindex.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/devel/siteindex.html b/templates/devel/siteindex.html index 3cbf08a9..9747470a 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> |