Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
207 views

Django templatetag “order of processing”

I am trying to write a set of template tags that allow you to easily specify js and css files from within the template files themselves. Something along the lines of {% requires global.css %}, and ...
8
votes
1answer
364 views

Why were the original authors of Django against include tags?

In this excellent Google Tech Talk by Jacob Kaplan-Moss, Jacob says that they added support for the include template tag despite previous dogmatic objections, and says that people shouldn't use it. ...
6
votes
3answers
1k views

increment a variable in django templates

All, How Can we increment a value like the following in django templates, {{ flag =0 }} {% for op in options %} {{op.choices}}<input type="radio" name="template" id="template" ...
6
votes
5answers
1k views

How to test custom template tags in Django?

I'm adding a set of template tags to a Django application and I'm not sure how to test them. I've used them in my templates and they seem to be working but I was looking for something more formal. ...
4
votes
2answers
65 views

Can you make a custom template tag that returns a queryset? If yes, how? - Django

Let's make this very easy for my fellow SOians(?). This is how normally the custom template tags work - Template -> {% block content %} blah blah blah {% custom_tag_load %} {% endblock ...
4
votes
1answer
413 views

Django template cycle for alternating rows - without loop

Perhaps this is a non-question, but how do you make use of the Django {% cycle %} functionality, or something similar, when you're not in a loop? Specifically, I have an HTML table that I'm writing by ...
4
votes
1answer
290 views

Dynamically choosing template for django inclusion tag

Currently I have an inclusion tag that is coded something like this: @register.inclusion_tag('forms/my_insert.html', takes_context=True) def my_insert(context): # set up some other variables for ...
4
votes
2answers
163 views

How can I test a template tag {% url %} in the shell?

I have a project in production. Everthing was working fun, but suddenly, I'm getting an error: Caught NoReverseMatch while rendering: Reverse for 'forum.views.tag' with arguments '(u'',)' and ...
4
votes
2answers
1k views

Django template {% trans %} pluralization

According to this section in the Django docs I should use {% blocktrans %} for cases where I need to translate pluralizations. However, with an example like the following, isn't there something more ...
3
votes
1answer
110 views

Is inline CSS in Django avoidable?

I've heard recommendations saying that you should not use inline CSS, like: <div style="min-width: 10em;">...</div> but that you should use class instead, separating the CSS from the ...
3
votes
2answers
112 views

Using a template tag within a form error message in Django

My code contains: Class GroupForm(forms.ModelForm): .... def clean_name(self): .... raise forms.ValidationError(mark_safe('....<a href="{% url edit %}">click ...
3
votes
1answer
149 views

Django template parsing order

Is the parsing order for Django templates specified somewhere in the Django documentation? Based on the documentation for writing custom template tags and the API, it seems Django uses a depth-first ...
3
votes
1answer
313 views

Django custom template tag which accepts a boolean parameter

According to this thread on the django-developers list, I can't pass the constant False as a parameter to a Django template tag because it will be treated as a variable name not a builtin constant. ...
3
votes
1answer
181 views

Howto add properties to the output of unordered_list?

I am using an unordered_list tag in django. I have the following list: foo = ['A', ['B', 'C', 'D'], 'E'] And the following tag: {{ foo|unordered_list }} Which produces, as expected the ...
3
votes
2answers
511 views

Refresh template in Django

I have a view like this: def form1(request): if request.method == 'POST': form = SyncJobForm(request.POST) if form.is_valid(): # do something in_progress = True ...
3
votes
2answers
371 views

{% include %} vs {% extends %} in django templates

When particularly extend template and when to use include ? Is include of any use with content like user profile section (like about me in the corner of our site) ?
3
votes
1answer
466 views

Django cannot find my templatetags, even though it's in INSTALLED_APPS and has a __init__.py

I just installed django-compress into /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/compress. I added 'compress' to INSTALLED_APPS. In my template file, I wrote {% ...
2
votes
1answer
30 views

Django get_comment_list returns empty list

I've been pulling my hair out over this and can't figure out what's going on. In my view I can do this: from django.contrib.comments import Comment ... context['comments'] = ...
2
votes
2answers
86 views

Get template name in template tag ( Django )

is there a way to get the template name ( being parsed ) in a template tag ? I have read searched and found nothing, only this previous post Getting the template name in django template which ...
2
votes
1answer
75 views

Django - verbose_name from a template tag

I need to display several models name & objects in a template Here is my view def contents(request): """Lists Objects""" objects = [ Model1.objects.all(), Model2.objects.all(), ...
2
votes
2answers
79 views

Django - how to get the contents of a {% block %} tag from a template

I got this far: >>> some_template = get_template_from_string( ... load_template_source( ... 'some_template.html', ... settings.TEMPLATE_DIRS)) ... >>> blocks = ...
2
votes
2answers
146 views

Django - A counter template tag that works well even with nested for tag

I am trying to make a custom template tag that will increment a variable. That would be used like this: {% for fruit in basket %} {if fruit.is_apple %}{% count apples %}{% endif %} {% endfor %} ...
2
votes
3answers
386 views

Append Django template tag with Jquery

I want to build a menu where I can set one link highlighted using the {% block %} tag. I have something like this in my Javascript: <loop> $('#a-div').append('{% block ' + variable + ' %} <a ...
2
votes
1answer
149 views

Django - Custom inclusion template tag MEDIA_URL?

I have the following custom inclusion tag: from django.template import Library from django.db.models import Count register = Library() @register.inclusion_tag('projects/work_part.html', ...
2
votes
1answer
182 views

How can I get the rendered output of a template within a template tag in django?

Disclaimer: This is a follow on question from my previous question. I'm attempting to write a template tag in Django, that will render itself within the body of a Mako Template. I'm not sure that ...
2
votes
1answer
395 views

django: same template tag but in multiple inherited html templates

I use template inheritance in django. Currently have frame.html and book_detail.html book_detail.html extends frame.html and I have books_tags.py # In frame.html {% load books_tags %} {% book_list ...
2
votes
1answer
137 views

Python/Django is importing the wrong module (relative when it should be absolute)

I'm using Django 1.2 pre-alpha and Python 2.4. Yeah, I know, but I'm stuck with it. We can't upgrade at the moment and I doubt that's the answer anyway. I've got two template tag libraries, foo and ...
2
votes
1answer
74 views

How to use {% with %} along with {% include %} — Django

For example, I have a template file called: filter.html {{ title }} code... What I'd like to do is, on a separate template: {% with "Filter by Types" as title %} {% include "filter.html" %} {% ...
2
votes
2answers
219 views

Creating a list on the fly in a Django template

I don't know whether it's possible, but I'd like to be able to write something like the following: {% with var1 var2 var3 as some_list %} {{ some_list|maximum }} {% endwith %} Creating a list ...
2
votes
3answers
3k views

Django: get URL of current page, including parameters, in a template

Is there a way to get the current page URL and all its parameters in a Django template? For example, a templatetag that would print full URL like /foo/bar?param=1&baz=2
2
votes
2answers
555 views

Passing variable urlname to url tag in django template

What I'd like to do (for a recent changes 'widget' - not a django widget in this case) is pass a urlname into my template as a variable, then use it like so: {% url sitechangeobject.urlname %} Where ...
2
votes
1answer
2k views

Django custom template tags and template loaders

[I have this discussion at http://groups.google.com/group/django-users/browse_thread/thread/989c569d5118980d] Is 'django.template.loaders.app_directories.load_template_source' required in the ...
1
vote
3answers
72 views

Django Template - Increment the value of a variable

I have the following code in my template {% set counter = 0 %} {% for object in object_list %} {% if object.attr1 == list1.attr1 and object.attr2 = list2.attr2 %} <li><a href="{{ ...
1
vote
1answer
33 views

how to filter an object_list in django template

I have the following model class CompanyReport(models.Model): company = models.CharField(max_length=300) desc = models.TextField() text = models.TextField() date = ...
1
vote
1answer
66 views

Django template access value within for loop in templatetag

Long story short I'm curious if there is any way to pull the the value of an obj within a for loop to a custom template tag? I currently have {% for OBJ in OBJ_LIST %} {% TAG 'string_value' OBJ %} ...
1
vote
1answer
24 views

Finding how to feed a Reverse function for a Django View

I'm stuck while trying to figure out how to feed "view_category", a view that could be fed into this template tag (from djangosnippets). Also, what is urls.py supposed to look like for this view/tag? ...
1
vote
1answer
19 views

Django templates - Reusable fragment with flexible name

I have a reusable HTML fragment that I use to list items. So to list items in a view I just do: variables = RequestContext(request, { 'items': items, } return ...
1
vote
1answer
45 views

django template tag instance

hard to word the question so ill go right to the point, i wrote the following template tag def do_simple_tag(parser, token): try: tag_name, name = token.split_contents() except ...
1
vote
1answer
75 views

Django variable substitution in the include template tag

I have an internationalized Django 1.3 site and want to do this: {% include "snippets/button.html" with button_text=_("Logout {{ user.username }} now") %} And snippets/button.html looks like this: ...
1
vote
1answer
90 views

change format sorl thumbnail

can someone please give me an example of how to change the SORL-thumbnail format in the django template tag. I've read the documentation here: http://thumbnail.sorl.net/template.html#thumbnail and ...
1
vote
2answers
51 views

Display dictionary values in template

Hi I have very basic question. I have view like below: def view1: dict = ('one':'itemone','two':'itemtwo','three','itemthree') return render_to_response('test.html',dict) test.html ...
1
vote
1answer
50 views

Delay rendering in jinja2

I'm a recent convert to jinja2 from django templates, up until now I haven't had much trouble porting our existing templates, but now I'm tasked with converting our custom django templatetags. The one ...
1
vote
1answer
148 views

Django: Best Practice for URL conf, url template tag

WIth class-based views having become MUCH better in Django, I am running into a "best practices" problem when implementing a class based view. It basically comes down to the URL template tag. Given a ...
1
vote
1answer
41 views

How to parse django style template tags

What's the best way to parse django style template tags in PHP? I know there are plenty of templating libraries for PHP, but I literally just need to parse one tag when I retrieve data from my ...
1
vote
1answer
100 views

How to make a Django template tag which expands into another (macro)

We've got a third-party Django template tag like this: {% frobnicate "foo", "bar", "baz" %} do stuff with {{ frobnicator }} {% endfrobnicate %} Unfortunately, the do stuff with {{ frobnicator }} ...
1
vote
1answer
691 views

TemplateSyntaxError 'staticfiles' is not a valid tag library'

I'm having a really strange issue trying to get the staticfiles taglib working in my application. I'm essentially getting the following error: 'staticfiles' is not a valid tag library: Template ...
1
vote
1answer
12 views

How to insert return value from templatetag to {% if

I have templatetag: @register.simple_tag def get_something(data, var1, var2): if data: if var1: if var2: return True return False And ho to insert this to {% ...
1
vote
2answers
56 views

New url syntax from django 1.3/dev onwards

Why did the django core developers allow the url templatetag to point directly to a django view function? (reference - https://docs.djangoproject.com/en/dev/ref/templates/builtins/#url) {% load url ...
1
vote
3answers
55 views

How to pass the result of a tag to a filter in Django?

How do I pass the result of a tag to a filter in Django? e.g. {{ {% widthratio a b c %}|add: 2 }}
1
vote
1answer
69 views

What's the correct include path in this template?

I am editing file: /templates/account/base.html and in it want to include: /templates/profiles/includes/sub_nav.html I have tried the following: {% block subnav %}{% include ...

1 2 3 4