diff options
author | Dan McGee <dan@archlinux.org> | 2011-11-17 13:32:42 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-11-17 13:32:42 -0600 |
commit | f43a33ed8696d7bcb987d4878c6411c5d16846d6 (patch) | |
tree | 2f3553e5190f7d390a108ec20c1ebcd92ea74224 /templates/packages/details.html | |
parent | 3a0e55a1de6fb42aaa0deece68cccba8ebb83cc8 (diff) |
Display package URLs unquoted if possible
Example: kbd-ru-keymaps.
Before: http://wiki.archlinux.org/index.php/%D0%98%D0%BD%D1%82%D0%B5%D1%80%D0%BD%D0%B0%D1%86%D0%B8%D0%BE%D0%BD%D0%B0%D0%BB%D0%B8%D0%B7%D0%B0%D1%86%D0%B8%D1%8F
After: http://wiki.archlinux.org/index.php/Интернационализация
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r-- | templates/packages/details.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index 2998592f..a9908012 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -108,7 +108,7 @@ </tr><tr> <th>Upstream URL:</th> <td>{% if pkg.url %}<a href="{{ pkg.url }}" - title="Visit the website for {{ pkg.pkgname }}">{{ pkg.url }}</a>{% endif %}</td> + title="Visit the website for {{ pkg.pkgname }}">{{ pkg.url|url_unquote }}</a>{% endif %}</td> </tr><tr> <th>License(s):</th> <td>{{ pkg.licenses.all|join:", " }}</td> |