Ticket #9093: inclusion_tag_using_template3.diff
File inclusion_tag_using_template3.diff, 4.7 KB (added by , 16 years ago) |
---|
-
django/template/__init__.py
823 823 raise TemplateSyntaxError(message) 824 824 return node_class(bits) 825 825 826 def inclusion_tag_compiler(params, defaults, name, node_class, parser, token): 827 "Returns an InclusionNode." 828 bits = token.split_contents()[1:] 829 using_template = [] # Allow multiple templates via select_template. 830 try: 831 using_index = bits.index('using') 832 except ValueError: 833 pass 834 else: 835 if using_index != len(bits) - 1: 836 # Get everything after the 'using' keyword. 837 using_template[:] = bits[using_index + 1:] 838 bits = bits[:using_index] 839 return node_class(bits, using_template) 840 826 841 class Library(object): 827 842 def __init__(self): 828 843 self.filters = {} … … 892 907 self.tag(getattr(func, "_decorated_function", func).__name__, compile_func) 893 908 return func 894 909 895 def inclusion_tag(self, file_name, context_class=Context, takes_context=False ):910 def inclusion_tag(self, file_name, context_class=Context, takes_context=False, allow_template_override=True): 896 911 def dec(func): 897 912 params, xx, xxx, defaults = getargspec(func) 898 913 if takes_context: … … 900 915 params = params[1:] 901 916 else: 902 917 raise TemplateSyntaxError("Any tag function decorated with takes_context=True must have a first argument of 'context'") 918 class InclusionNode(Node): 919 default_template = file_name 903 920 904 class InclusionNode(Node):905 def __init__(self, vars_to_resolve):921 def __init__(self, vars_to_resolve, using_template=()): 922 self.using_template = map(Variable, using_template) 906 923 self.vars_to_resolve = map(Variable, vars_to_resolve) 907 924 908 925 def render(self, context): … … 915 932 dict = func(*args) 916 933 917 934 if not getattr(self, 'nodelist', False): 935 using_template = [var.resolve(context) for var in self.using_template] 936 file_name = using_template or self.default_template 918 937 from django.template.loader import get_template, select_template 919 938 if not isinstance(file_name, basestring) and is_iterable(file_name): 920 939 t = select_template(file_name) … … 923 942 self.nodelist = t.nodelist 924 943 return self.nodelist.render(context_class(dict, 925 944 autoescape=context.autoescape)) 926 927 compile_func = curry(generic_tag_compiler, params, defaults, getattr(func, "_decorated_function", func).__name__, InclusionNode) 945 946 if allow_template_override: 947 tag_compiler = inclusion_tag_compiler 948 else: 949 tag_compiler = generic_tag_compiler 950 compile_func = curry(tag_compiler, params, defaults, getattr(func, "_decorated_function", func).__name__, InclusionNode) 928 951 compile_func.__doc__ = func.__doc__ 929 952 self.tag(getattr(func, "_decorated_function", func).__name__, compile_func) 930 953 return func -
docs/howto/custom-template-tags.txt
706 706 the tag is passed the context object, as in this example. That's the only 707 707 difference between this case and the previous ``inclusion_tag`` example. 708 708 709 Sometimes you may wish to use an inclusion tag with a template other than the 710 one specified in ``register.inclusion_tag()``. Inclusion tags offer the 711 following syntax for this scenario: 712 713 .. code-block:: html+django 714 715 {% show_results poll using "custom/results.html" %} 716 717 This will use the template found at ``custom/results.html`` instead of the 718 default of ``results.html`` (specified when the inclusion tag was registered). 719 Multiple templates may be provided with this syntax -- Django's template loader 720 will select which one to use: 721 722 .. code-block:: html+django 723 724 {% show_results poll using "site/results.html" "app/results.html" %} 725 726 To disallow overriding the template for your inclusion tag, specify 727 ``allow_template_override=False`` in ``register.inclusion_tag()``: 728 729 register.inclusion_tag('results.html', allow_template_override=False)(show_results) 730 709 731 Setting a variable in the context 710 732 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 711 733