diff options
author | Dan McGee <dan@archlinux.org> | 2012-03-24 13:01:17 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-03-24 13:01:17 -0500 |
commit | 965351e85b25d83c193fcf68e42947b3b22a6b8f (patch) | |
tree | 09249bacc0ce1fb6deeac579c5474246f62c3735 | |
parent | 3e2e4d4ef8910351910d633d17f8b4e9c0ea4c74 (diff) |
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 <dan@archlinux.org>
-rw-r--r-- | retro/templatetags/__init__.py | 0 | ||||
-rw-r--r-- | retro/templatetags/retro.py | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/retro/templatetags/__init__.py b/retro/templatetags/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/retro/templatetags/__init__.py diff --git a/retro/templatetags/retro.py b/retro/templatetags/retro.py new file mode 100644 index 00000000..c7fd9f00 --- /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: |