Mercurial > public > sg101
changeset 30:a39907cd63e2
Decided against having an elsewhere templates directory. Just put that stuff in bio.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 03 May 2009 20:18:14 +0000 |
parents | 74f04122295e |
children | 5eed5e7c1c98 |
files | gpp/bio/templatetags/elsewhere_tags.py gpp/templates/bio/elsewhere_links.html gpp/templates/elsewhere/links_list.html |
diffstat | 3 files changed, 32 insertions(+), 32 deletions(-) [+] |
line wrap: on
line diff
--- a/gpp/bio/templatetags/elsewhere_tags.py Sun May 03 20:14:04 2009 +0000 +++ b/gpp/bio/templatetags/elsewhere_tags.py Sun May 03 20:18:14 2009 +0000 @@ -7,7 +7,7 @@ register = template.Library() -@register.inclusion_tag('elsewhere/links_list.html', takes_context=True) +@register.inclusion_tag('bio/elsewhere_links.html', takes_context=True) def elsewhere_links(context, user): return { 'social_nets': user.social_network_profiles.all(),
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/bio/elsewhere_links.html Sun May 03 20:18:14 2009 +0000 @@ -0,0 +1,31 @@ +{% if social_nets or ims or websites %} +<ul> + {% if social_nets %} + <li>Social Networks</li> + <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 %} + </ul> + {% endif %} + {% if ims %} + <li>Instant Messengers</li> + <ul class="icon-list"> + {% 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 %} + </ul> + {% endif %} + {% if ims %} + <li>Websites</li> + <ul class="icon-list"> + {% 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 %} +</ul> +{% endif %}
--- a/gpp/templates/elsewhere/links_list.html Sun May 03 20:14:04 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -{% if social_nets or ims or websites %} -<ul> - {% if social_nets %} - <li>Social Networks</li> - <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 %} - </ul> - {% endif %} - {% if ims %} - <li>Instant Messengers</li> - <ul class="icon-list"> - {% 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 %} - </ul> - {% endif %} - {% if ims %} - <li>Websites</li> - <ul class="icon-list"> - {% 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 %} -</ul> -{% endif %}