- 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
- LazyPrimaryKeyRelatedField by LLyaudet 6 days, 4 hours ago
- CacheInDictManager by LLyaudet 6 days, 11 hours ago
- MYSQL Full Text Expression by Bidaya0 1 week ago
- Custom model manager chaining (Python 3 re-write) by Spotted1270 1 week, 6 days ago
- Django Standard API Response Middleware for DRF for modern frontend easy usage by Denactive 4 weeks, 1 day ago
Comments
Please login first before commenting.