From 965351e85b25d83c193fcf68e42947b3b22a6b8f Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 24 Mar 2012 13:01:17 -0500 Subject: Add retro_static template tag Unfortunately {% static %} cannot interpret any context variables passed into it, so we need to customize things in order to use it here since our resources are sorted by year. Signed-off-by: Dan McGee --- retro/templatetags/__init__.py | 0 retro/templatetags/retro.py | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 retro/templatetags/__init__.py create mode 100644 retro/templatetags/retro.py (limited to 'retro') diff --git a/retro/templatetags/__init__.py b/retro/templatetags/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/retro/templatetags/retro.py b/retro/templatetags/retro.py new file mode 100644 index 0000000..c7fd9f0 --- /dev/null +++ b/retro/templatetags/retro.py @@ -0,0 +1,13 @@ +from django import template +from django.contrib.staticfiles.storage import staticfiles_storage + +register = template.Library() + + +@register.simple_tag +def retro_static(year, path): + """Like the built-in {% static %} tag but with a little extra magic.""" + full_path = "%s/%s" % (year, path) + return staticfiles_storage.url(full_path) + +# vim: set ts=4 sw=4 et: -- cgit v1.2.3-24-g4f1b