Skip to main content

A template tag for Django that takes a string and renders as it if it was a template.

Project description

A template tag for Django that takes a string and renders as it if it was a template. Uses the current Engine and RequestContext.

Include in your template by adding {% load render_as_template %}. Use by adding {% render_as_template some_var %} where some_var is a context variable that acts as a template.

Example: assume your view exposes two variables in the context: my_string and my_template.

Then, if:

my_string == u"http://example.com/", and

my_template == u"Go to {{ my_string|urlize }}!"", and

the_views_template.html == u"{% render_as_template my_template %}"

Then final output would be:

Go to <a href="http://example.com/" rel="nofollow">http://example.com/</a>!

Mixed with flatpages this lets you create powerful websites, although make sure you trust the people who can edit those flatpages because who knows what kind of dangerous security holes this thing will create! Also if your template includes HTML don’t forget to mark it safe:

{% render_as_template my_template|safe %}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-render-as-template-1.0.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

django_render_as_template-1.0.0-py2.py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page