Generated: Wed 2013-03-13 10:33 CET
Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/django/contrib/staticfiles/templatetags/staticfiles.py
Stats: 0 executed, 3 missed, 2 excluded, 8 ignored
from django import templatefrom django.contrib.staticfiles.storage import staticfiles_storageregister = template.Library()@register.simple_tagdef static(path): """ A template tag that returns the URL to a file using staticfiles' storage backend """ return staticfiles_storage.url(path)