diff --git a/templates/download-tor.html b/templates/download-tor.html index 41cbe19e18c180fd9a20924186db46c476462232..f2df00a20ee0b3f8241d00f1df9eddbd085bb79e 100644 --- a/templates/download-tor.html +++ b/templates/download-tor.html @@ -19,19 +19,21 @@ {% set download_link = 'https://dist.torproject.org/tor-' + t.version + '.tar.gz' %} {% set changelog_link = 'https://gitweb.torproject.org/tor.git/plain/ChangeLog?h=tor-' + t.version %} {% set alpha_changelog_link = 'https://gitweb.torproject.org/tor.git/plain/ChangeLog?h=tor-' + a.version %} - {% set sig_link = download_link + '.asc' %} + {% set checksum_link = download_link + '.sha256sum' %} + {% set sig_link = checksum_link + '.asc' %} {% set alpha_download_link = 'https://dist.torproject.org/tor-' + a.version + '.tar.gz' %} - {% set alpha_sig_link = alpha_download_link + '.asc' %} + {% set alpha_checksum_link = alpha_download_link + '.sha256sum' %} + {% set alpha_sig_link = alpha_checksum_link + '.asc' %} {{ t.version }} {{ _('Changelog') }} - {{ _('Download') }} ({{ _('sig') }}) + {{ _('Download') }} ({{ _('checksum') }} | {{ _('sig') }}) {% if t.version != a.version %} {{ a.version }} {{ _('Changelog') }} - {{ _('Download') }} ({{ _('sig') }}) + {{ _('Download') }} ({{ _('checksum') }} | {{ _('sig') }}) {% endif %}