In smarty templates you can use raw PHP code in a template by placing it within the "literal" template tag:
{literal}
echo 'hello world';
{/literal}
How can you use raw python code in a Django template?
|
|
|
You can't, that's why you have to create custom template tag which runs the functionality. Here's more information on how to do that: http://docs.djangoproject.com/en/dev/howto/custom-template-tags/ |
|||
|
|
|
You cannot. However, there are things like Mako that let you do that, but, mostly its a good idea to keep your logic (i.e. python) away from templates. In fact, some templates only allow variable substitution. |
|||
|
|
|
You cannot use python code in django template. This is by design, Django's idea of template is to isolate the presentation logic from the programming code.
|
|||
|
|
|
You can't. Like most sane template engines, Django's doesn't allow that (not that I'm saying that Django is sane or anything...). |
|||||
|