Tagged Questions
The templatetag tag has no wiki summary.
6
votes
6answers
153 views
Is there a pythonic way of knowing when the first and last loop in a for is being passed through?
I have a template in which I placed, let's say 5 forms, but all disabled to be posted except for the first one. The next form can only be filled if I click a button that enables it first.
I'm looking ...
2
votes
3answers
2k views
How to embed a tag within a url templatetag in a django template?
How do I embed a tag within a url templatetag in a django template?
Django 1.0 , Python 2.5.2
In views.py
def home_page_view(request):
NUP={"HOMEPAGE": ...
1
vote
5answers
2k views
Django template tag + template with user.is_authenticated doesn't work
I have a strange problem, in my settings file everything is enabled that needs to be enabled for user.is_authenticated use in a template.
I have the following template tag code:
from django import ...
0
votes
0answers
17 views
Template tag in post editor in WordPress
I need to make some template tags inside post, so I wonder if it's possible to add template tags inside admin post editor so that wordpress parse it like template tag.
0
votes
2answers
59 views
Django plaintext template
I'm currently writing a template which mostly outputs my fields and it's contents from the database as plaintext so that it can be downloaded (supposed to be a configuration file for ltsp) and I'm in ...
0
votes
1answer
204 views
django: passing custom tag a parameter
I'm trying to pass a variable from the URL (not the query string) to a custom tag, but it looks like I'm getting a ValueError when converting it to an int. It appears at first glance that it's coming ...
0
votes
1answer
125 views
how django`s templatetag cache work?
I use cache tag like this :
{% cache 1200 special %}
{{aticle_list}}
{% endcache %}
I found that there is a key named "template.cache.special.d41d8cd98f00b204e9800998ecf8427e" in memcache.
...
-3
votes
1answer
282 views