Merge pull request #559 from michaelmior/django1.5-static

{% static %} template tag for Django 1.5
This commit is contained in:
Tom Christie 2013-01-07 00:52:23 -08:00
commit 2034009b59

View File

@ -23,7 +23,7 @@ register = template.Library()
# conflicts with this rest_framework template tag module.
try: # Django 1.5+
from django.contrib.staticfiles.templatetags import StaticFilesNode
from django.contrib.staticfiles.templatetags.staticfiles import StaticFilesNode
@register.tag('static')
def do_static(parser, token):