I try to smuggle HTML template in the HTML for mustache.js, however the django template engine remove all the placeholders that should be output as-is to the front-end

The template is included in HTML in this way:

<script type="text/x-mustache-template" data-id="header_user_info">
               <div id="header_user_info">
                       <div id="notification">0</div>
                       <a href="#">{{username}}</a>
               </div>
</script>

and I can get the HTML template by running $(el).html(), and generate html by using Mustache.to_html(temp, data);

I could put all the template into another static file and serve from CDN, but then it would be hard to track where the template belongs, and at least one extra http request.

link|improve this question

Chris' answer is correct. The templatetag template tag is quite verbose though. Some workarounds are discussed on this stack overflow question – Alasdair Nov 2 '11 at 18:59
feedback

5 Answers

up vote 7 down vote accepted

You can use the {% templatetag %} templatetag to print out characters that would normally be processed by Django. For example:

{% templatetag openvariable %} variable {% templatetag closevariable %}

Results in the following in your HTML:

{{ variable }}

For a full list of arguments see: https://docs.djangoproject.com/en/dev/ref/templates/builtins/#templatetag

link|improve this answer
Thanks. It works for me. – Dong-Bang Tsai Nov 2 '11 at 19:01
If this answers your question, please mark it as accepted, and upvote it. – Alasdair Nov 2 '11 at 19:05
1  
Great. Then accept my answer. You should probably accept answers to other questions you've asked, as well. – Chris Pratt Nov 2 '11 at 19:06
Nice one! Had no idea about this tag. – Yuji Tomita Nov 2 '11 at 19:14
3  
While this works, surely there must be a better way than replacing each instance of {{ with {% templatetag openvariable %}. – Michael Mior Nov 21 '11 at 23:03
show 1 more comment
feedback

Try to use django-mustachejs

{% load mustachejs %}
{% mustachejs "main" %}

Django-mustachejs will generate the following:

<script>Mustache.TEMPLATES=Mustache.TEMPLATES||{};Mustache.TEMPLATES['main']='<<Your template >>';</script>
link|improve this answer
feedback

I have the same issue, but using

{% templatetag openvariable %} variable {% templatetag closevariable %}

is too verbose for me. I've just added a very simple custom template tag:

@register.simple_tag
def mtag(tagContent):
    return "{{%s}}" % tagContent

So that I can now write:

{% mtag "variable" %}
link|improve this answer
feedback

I have the same issue, so most of the time my variables are part of a translatable string.

{% trans "The ball is {{ color }}" %}

You can use the trans templatetag even if you don't offer i18n.

link|improve this answer
feedback

An easy fix: go into your mustache source replace all {{ by [[ and all }} by ]] Now mustache is using [[ instead of {{, and ]] instead of }}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.