inclusion tag with template as variable

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
dummy_extends_template.html 
=========================
{% extends template %}


template_tag_code.py
===============================
from django.template import Template, Library

register = Library()

# you can use {% include template %} to

...

@register.inclusion_tag("dummy_extends_template.html" )
def my_template_tag(template, arg1, arg2, arg3):
    """ template can be Template object or template name """
    ... 
    return {'template':template, 'arg1':arg1, 'arg2':arg2 }

More like this

  1. render_partial by hachaboob 4 years, 8 months ago
  2. Private Context Decorator by acdha 3 years, 9 months ago
  3. Mod to allow simple_tag to access context by leaf 4 years, 7 months ago
  4. a simple tag with context by dsblank 3 years, 5 months ago
  5. Silently-failing include tag by brutasse 2 years, 11 months ago

Comments

(Forgotten your password?)