Tagged Questions
2
votes
1answer
161 views
How can I get a Django Template to render itself within a Mako Template?
We made the decision quite awhile ago to use Mako Templates in our Django project. We're also supporting Django Templates, since a lot of reusable apps (obviously) assume that Django Templating is ...
2
votes
1answer
496 views
Mako templates using Django template tags
Our Django site is built using Mako templates. We want to use a third party project called django-socialregistration, but its template tags use Django's templates. If we used Django templates we could ...
2
votes
2answers
365 views
Project name inserted automatically in url when using django template url tag
I am applying the 'url' template tag to all links in my current Django project.
I have my urls named like so...
url(r'^login/$', 'login', name='site_login'),
This allows me to access /login at my ...
1
vote
1answer
136 views
translated enum fields in template tags
I try to show the name of an enum in the template.To be clear,
I have enum like class in model.py
class EmployerWorkerNumberRange():
R_0 = 0
R_1_5 = 1
R_6_15 = 2
UNKNOWN = 3
...
1
vote
1answer
43 views
problem with simple templatetags usage in django
I try to use templatetags in django but I have trouble.
I defined enumhelper.py in the templatetags package.
Then I load it at the top of employer_list.html like
{% extends "base.html" %}
{% load ...
1
vote
1answer
94 views
Check if a template tag is loaded in Django
Is there a way to check if a template tag exists before using the template tag?
In other words, I would like to be able to do something like this:
{% load my_custom_tags %}
...
{% ifloaded ...
1
vote
1answer
353 views
Decorators on Django Template Filters?
I have a template filter that performs a very simple task and works well, but I would like to use a decorator on it. Unfortunately the decorator causes a nasty django error that doesn't make any ...
1
vote
3answers
560 views
Django templatetag for rendering a subset of html
I have some html (in this case created via TinyMCE) that I would like to add to a page. However, for security reason, I don't want to just print everything the user has entered.
Does anyone know of a ...
1
vote
2answers
891 views
Django Paginated Comments .. is there any existing solutions?
is there any existing pagination solution for Django contrib.comments?
What I need is just a simple paginated django comments, for the Basic Blog application (from the Django Basic Apps) I used, ...
0
votes
1answer
132 views
Using inclusion_tag decorater with dynamic template
Here is the standard inclusion tag:
@register.inclusion_tag('results.html')
def show_results(poll):
...
I'd like to know if is it possible to use an inclusion tag, defining dynamically the template ...
0
votes
1answer
44 views
What is the purpose of django tempate tags in the MVC model?
It is my understanding that template tags are a way to organize presentation logic, is this correct?
What I want to do is load/read a bunch of my model objects, but show them in different areas of ...
0
votes
3answers
336 views
How do I write a Django template tag for access control?
I'm trying, in vain, to create a simple Django template tag to either show or hide a "delete" link next to a submitted comment on my site.
In a nutshell, I want to pass the comment object to the ...
0
votes
1answer
169 views
give an active to class to active link
I am writing a python website built on the back of the django framework, I am looking for a way to highlight the current link the user is on depening on what the URL, I thought doing some thing like ...
0
votes
2answers
183 views
templatetags don't refresh
I have two templatetags in my app which contain forms which show entries in db. When I alter data or add new entry to db, the forms show the old data. While in admin panel everything is correct ...