django-rawinclude

Software Screenshot:
django-rawinclude
Software Details:
Version: 0.1
Upload Date: 20 Feb 15
Developer: Andrei Antoukh
Distribution Type: Freeware
Downloads: 46

Rating: 5.0/5 (Total Votes: 1)

django-rawinclude is a small module for Django that gives the ease of loading templates in raw. That is, not rendering the content.

This really is useful for embedding javascript templates with sintaxys similar to django. It is more useful than the templatetag "ssi" because it uses all the logic of templateloaders of django.

NOTE1: Not compatible with django cache loader, but in the very near future be implemented cache itself.

NOTE2: it is studying ways to facilitate i18n, either through javascript, either by python.

How use it?

On first step, setup your own templateloaders on settings.py:

RAWINCLUDE_TEMPLATE_LOADERS = [
 'django.template.loaders.filesystem.Loader',
 'django.template.loaders.app_directories.Loader',
]

INSTALLED_APPS = [
 ...
 "rawinclude",
]


And second step, embedd some raw-template in your standard django template:

{% load rawinclude %}
{% raw_include "path/rawtemplate.html" %}

Requirements:

  • Python
  • Django

Other Software of Developer Andrei Antoukh

Comments to django-rawinclude

Comments not found
Add Comment
Turn on images!