diff options
author | Dan McGee <dan@archlinux.org> | 2013-01-28 14:27:44 -0700 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-01-28 14:27:44 -0700 |
commit | a471316a58a9c62b869696fe36d72abcbf9f2ab1 (patch) | |
tree | 411d625c73ffc6d29722fda3b5c41699a77ae36f /templates/releng/release_list.html | |
parent | bc539b6ed174fed1545aabaa4ceb7a7f925cbbed (diff) |
Use torrent view and checksums where appropriate
We no longer need to link externally to these items since we have all
the data available in the web application now.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/releng/release_list.html')
-rw-r--r-- | templates/releng/release_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/releng/release_list.html b/templates/releng/release_list.html index 84008541..ef53a93d 100644 --- a/templates/releng/release_list.html +++ b/templates/releng/release_list.html @@ -31,7 +31,7 @@ <td><a href="{{ item.get_absolute_url }}" title="Release details for {{ item.version }}">{{ item.version }}</a></td> <td>{{ item.kernel_version|default:"" }}</td> <td class="available-{{ item.available|yesno }}">{{ item.available|yesno|capfirst }}</td> - <td>{% if item.available %}<a href="https://www.archlinux.org/{{ item.iso_url }}.torrent" + <td>{% if item.available %}<a href="{% url 'releng-release-torrent' item.version %}" title="Download torrent for {{ item.version }}">Torrent</a>{% endif %}</td> <td>{% if item.available %}<a href="{{ item.magnet_uri }}">Magnet</a>{% endif %}</td> <td>{% if item.file_size %}{{ item.file_size|filesizeformat }}{% endif %}</td> |