Randomized Include Tag

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from django.template import Library, Node, Variable, TemplateSyntaxError
from django.template.loader import get_template

register = Library()

class RandIncludeNode(Node):
    def __init__(self, template_names):
        from random import randrange
        templates = template_names.split(',')
        self.template_name = Variable(templates[randrange(len(templates))])


    def render(self, context):
        try:
            template_name = self.template_name.resolve(context)
            t = get_template(template_name)
            return t.render(context)
        except TemplateSyntaxError, e:
            if settings.TEMPLATE_DEBUG:
                raise
            return ''
        except:
            return '' # Fail silently for invalid included templates.
        
@register.tag
def rand_include(parser, token):
    """
    Loads a template and renders it with the current context.
    
    Example::
    
    {% include "foo/some_include" %}
    """
    bits = token.contents.split()
    if len(bits) != 2:
        raise TemplateSyntaxError, "%r tag takes one argument: the name of the template to be included" % bits[0]
    path = bits[1]
    return RandIncludeNode(bits[1])

More like this

  1. Humanize lists of strings in templates by ChipX86 5 years, 11 months ago
  2. uuid template tag by nomadjourney 4 years, 2 months ago
  3. Language-aware template inclusion by bartTC 4 years, 2 months ago
  4. Template tag: Group variables into list by Killarny 4 years, 2 months ago
  5. {% ifthis FOO isoneof BAR BAZ ... %} by sjl 3 years ago

Comments

(Forgotten your password?)