Mercurial > public > sg101
view gpp/templates/bio/elsewhere_links.html @ 197:2baadae33f2e
Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 10 Apr 2010 04:32:24 +0000 |
parents | 146ded23d05c |
children | 88b2b9cb8c1f |
line wrap: on
line source
{% if social_nets or ims or websites %} <ul class="icon-list"> {% for net in social_nets %} <li><img src="{{ MEDIA_URL }}elsewhere/{{ net.icon_name }}" alt="{{ net.name }}" /> <a href="{{ net.url }}">{{ net.name }}</a></li> {% endfor %} {% for im in ims %} <li><img src="{{ MEDIA_URL }}elsewhere/{{ im.icon_name }}" alt="{{ im.name }}" /> <a href="{{ im.url }}">{{ im.name }}</a></li> {% endfor %} {% for site in websites %} <li><img src="{{ MEDIA_URL }}icons/world.png" alt="{{ site.name }}" /> <a href="{{ site.url }}">{{ site.name }}</a></li> {% endfor %} </ul> {% endif %}