Hi all
I have a page and it would be very useful for me to do the following:
{% include projectNameFromTemplateArguments_a %}
where projectNameFromTemplateArguments_a is set in the template arguments
when rendering the html.
But that doesn't seem to work in that form. I'm using a work around where I
do some ifequal tests:
{% ifequal a b %}
<div id="thinga">{% include "project1a.html" %}</div>
<div id="thingb">{% include "project1b.html" %}</div>
<div id="thingc">{% include "project1c.html" %}</div>
<div id="thingd">{% include "project1d.html" %}</div>
{% else %} {% ifequal a c %}
<div id="thinga">{% include "project2a.html" %}</div>
<div id="thingb">{% include "project2b.html" %}</div>
<div id="thingc">{% include "project2c.html" %}</div>
<div id="thingd">{% include "project2d.html" %}</div>
{% endifequal %}
Is what I want possible?
Thanks
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/95AgbY_hXcUJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.