- Author:
- benjy_mouse
- Posted:
- February 13, 2010
- Language:
- Python
- Version:
- 1.1
- Score:
- 3 (after 3 ratings)
A simple template tag that returns the favicon URL for a given arbitrary URL.
Put the code into a python module in the templatetags package of a Django app (e.g. myapp/templatetags/mytags.py), and use it like this:
{% load mytags %}
...
<img src="{% favicon posting.url %}/>
<a href="{{ posting.url }}">{{posting.title}}</a>
...
1 2 3 4 5 6 7 8 9 10 11 12 | from django import template
from urlparse import urlparse, urlunparse
register = template.Library()
@register.simple_tag
def favicon(url):
parsed_url = urlparse(url)
return urlunparse((parsed_url[0], parsed_url[1],
u'favicon.ico', parsed_url[3],
parsed_url[4], parsed_url[5]))
|
More like this
- Serializer factory with Django Rest Framework by julio 5 months, 3 weeks ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 6 months, 2 weeks ago
- Help text hyperlinks by sa2812 7 months, 1 week ago
- Stuff by NixonDash 9 months, 2 weeks ago
- Add custom fields to the built-in Group model by jmoppel 11 months, 3 weeks ago
Comments
Please login first before commenting.