Login

html helpers for images and links

Author:
buriy
Posted:
October 9, 2007
Language:
Python
Version:
.96
Score:
6 (after 6 ratings)

link and img are both HTML construction helpers. Good idea to use these helpers if your html don't fit into templates.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def link(url, text='', classes=''):
    if not text: text = url
    if classes: classes = ' class="%s"' % classes
    return """<a href="%s"%s>%s</a>""" % (url, classes, text)

def img(url, alt='', classes=''):
    if not url.startswith('http://') and not url[:1]=='/':
        #add media_url for relative paths
        import settings
        url = settings.MEDIA_URL + url
    if classes: classes = ' class="%s"' % classes
    if alt: alt = ' alt="%s" title="%s"' % (alt, alt)
    return """<img src="%s"%s%s>""" % (url, classes, alt)

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 1 week ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 9 months, 4 weeks ago
  5. Help text hyperlinks by sa2812 10 months, 3 weeks ago

Comments

Please login first before commenting.