- 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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.