Rendering JSON objects using a Django template after an Ajax call

Hey thanks vikingosegundo!

I like using decorators too :-).
But in the meanwhile I’ve been following the approach suggested by the snippet I was mentioning above. Only thing, use instead the snippet n. 942 cause it’s an improved version of the original one. Here’s how it works:

Imagine you have a template (e.g., ‘subtemplate.html’) of whatever size that contains a useful block you can reuse:

     ........
    <div id="results">          
        {% block results %}
            {% for el in items %}
                   <li>{{el|capfirst}}</li>
            {% endfor %}
        {% endblock %}      
    </div><br />
     ........

By importing in your view file the snippet above you can easily reference to any block in your templates. A cool feature is that the inheritance relations among templates are taken into consideration, so if you reference to a block that includes another block and so on, everything should work just fine. So, the ajax-view looks like this:

from django.template import loader
# downloaded from djangosnippets.com[942]
from my_project.snippets.template import render_block_to_string

def ajax_view(request):
    # some random context
    context = Context({'items': range(100)})
    # passing the template_name + block_name + context
    return_str = render_block_to_string('standard/subtemplate.html', 'results', context)
    return HttpResponse(return_str)

Leave a Comment