From 0b930fd92140858f4ad21e593feb057996af9b95 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 16 Jan 2013 00:36:17 -0600 Subject: Convert all usages of flag icons to new sprite This uses a new template tag to avoid repeating construction of the necessary HTML element all over the place. The site should look exactly as it did before, except now you don't have to download 20+ images to see some pages. Signed-off-by: Dan McGee --- templates/public/download.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'templates/public/download.html') diff --git a/templates/public/download.html b/templates/public/download.html index 0c96fce..7de4977 100644 --- a/templates/public/download.html +++ b/templates/public/download.html @@ -2,8 +2,12 @@ {% load cache %} {% load url from future %} {% load static from staticfiles %} +{% load flags %} {% block title %}Arch Linux - Downloads{% endblock %} + +{% block head %}{% endblock %} + {% block navbarclass %}anb-download{% endblock %} {% block content %} @@ -83,7 +87,7 @@
{% regroup mirror_urls by country as grouped_urls %} {% for country in grouped_urls %} - {% if country.grouper %}
{{ country.grouper.name }}
+ {% if country.grouper %}
{% country_flag country.grouper %}{{ country.grouper.name }}
{% else %}
Worldwide
{% endif %}
    {% for mirror_url in country.list %} -- cgit v1.2.3-24-g4f1b