﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
28468	"Template braces within {% include ... with=""..."" %} are not evaluated"	Liquid Scorpio	nobody	"I am not sure if this is a bug or limitation, I will add here anyways.

Consider following code inside a django template:


{{{
{% include 'partials/_message.html' with 
            message_title=""Unauthorised""
            message_body=""You need <strong>{{ perm_name }}</strong> permission to access the content."" %}
}}}

The issue is related to the output rendered in browser for *message_body* when {% include %} is executed.

==== Expected output:
You need **read** permission to access the content.

==== Actual output:
You need **{{ perm_name }}** permission to access the content.

==== Notes
While the included template evaluates the passed in **<strong>** tag, it does not evaluate the variable **{{ perm_name }}** and outputs it verbatim.
"	Uncategorized	closed	Template system	1.11	Normal	invalid			Unreviewed	0	0	0	0	0	0
