[Answer]-Loading views into template without Ajax on Django

1👍

You couldn’t render a view like that without ajax. {% load %} is used for loading modules, not templates or views, like:

{% load humanize %}

However, you could use an {% include %} tag, or a custom template tag that does whatever processing you need and returns its template where you include it.

Leave a comment