Mercurial > public > sg101
view gpp/templates/bio/elsewhere_links.html @ 102:e67c4dd98db5
Forums: new topic form sprouts boolean fields for sticky and locking if the user has rights. Implemented the locked logic. Fixed a bug where topics where getting out of order (the view_count was bumping the update_date because of auto_now).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 16 Sep 2009 02:01:57 +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 %}