Mercurial > public > sg101
view gpp/templates/bio/elsewhere_links.html @ 505:a5d11471d031
Refactor the logic in the rate limiter decorator. Check to see if the request was ajax, as the ajax view always returns 200. Have to decode the JSON response to see if an error occurred or not.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 03 Dec 2011 19:13:38 +0000 |
parents | 88b2b9cb8c1f |
children |
line wrap: on
line source
{% if social_nets or ims or websites %} <ul class="icon-list"> {% for net in social_nets %} <li><img src="{{ STATIC_URL }}elsewhere/{{ net.icon_name }}" alt="{{ net.name }}" /> <a href="{{ net.url }}">{{ net.name }}</a></li> {% endfor %} {% for im in ims %} <li><img src="{{ STATIC_URL }}elsewhere/{{ im.icon_name }}" alt="{{ im.name }}" /> <a href="{{ im.url }}">{{ im.name }}</a></li> {% endfor %} {% for site in websites %} <li><img src="{{ STATIC_URL }}icons/world.png" alt="{{ site.name }}" /> <a href="{{ site.url }}">{{ site.name }}</a></li> {% endfor %} </ul> {% endif %}