Tagged Questions

a string of text that is intended to separate the presentation of a document from its data

learn more… | top users | synonyms

43
votes
8answers
13k views

Can I access constants in settings.py from templates in Django?

I have some stuff in settings.py that I'd like to be able to access from a template, but I can't figure out how to do it. I already tried {{CONSTANT_NAME}} but that doesn't seem to work. Is this ...
37
votes
7answers
9k views

Is there a HAML implementation for use with Python and Django

I happened to stumble across HAML, an interesting and beautiful way to mark up contents and write templates for HTML. Since I use Python and Django for my web developing need, I would like to see if ...
36
votes
3answers
5k views

App engine default Django version change

Since app engine 1.4.2 was released, I am getting warnings like this in my production logs: You are using the default Django version (0.96). The default Django version will change in an App ...
27
votes
7answers
16k views

Django: how do you serve media / stylesheets and link to them within templates

Variations of this question have been asked, but I'm still unable to get my stylesheets to load correctly when my templates are rendered. I'm attempting to serve static media from the Django process ...
25
votes
9answers
7k views

Change Django Templates Based on User-Agent

I've made a Django site, but I've drank the Koolaid and I want to make an IPhone version. After putting much thought into I've come up with two options: Make a whole other site, like i.xxxx.com. ...
21
votes
9answers
7k views

What is the fastest template system for Python?

Jinja2 and Mako are both apparently pretty fast. How do these compare to (the less featured but probably good enough for what I'm doing) string.Template ?
21
votes
5answers
10k views

Alternate Row Coloring in Django Template with More Than One Set of Rows

Django templates offer the builtin tag cycle for alternating between several values at different points in a template (or for loop in a template) but this tag does not reset when it is accessed in a ...
20
votes
8answers
12k views

Numeric for loop in Django templates

How do I write a numeric for loop in a Django template? I mean something like for i = 1 to n
18
votes
10answers
5k views

How to repeat a “block” in a django template

I want to use the same {% block %} twice in the same django template. I want this block to appear more than once in my base template: # base.html <html> <head> <title>{% ...
18
votes
3answers
6k views

How to access the user profile in a Django template?

I'm storing some additional per-user information using the AUTH_PROFILE_MODULE. We can access the user in a Django template using {{ request.user }} but how do we access fields in the profile since ...
17
votes
10answers
10k views

Django - Iterate over model instance field names and values in template

I'm trying to create a basic template to display the selected instance's field values, along with their names. Think of it as just a standard output of the values of that instance in table format, ...
17
votes
7answers
4k views

Any drawbacks or gotchas to using Jinja2 templates in Django?

After reading the Jinja2 documentation, I'm interested in employing it in future Django projects. However, I'm wondering if anyone has encountered any drawbacks or gotchas when using Jinja2 templates ...
17
votes
5answers
7k views

In Django, is it possible to access the current user session from within a custom tag?

I am writing a custom tag in Django that should output a value stored in a user session, but I cannot find a way to access the session object from within a custom tag function. Is there any way to do ...
15
votes
3answers
6k views

django template system, calling a function inside a model

I want to call a function from my model at a template such as: class ChannelStatus(models.Model): .............................. .............................. def ...
15
votes
6answers
6k views

Django templates: verbose version of a choice

I have a model: from django.db import models CHOICES = ( ('s', 'Glorious spam'), ('e', 'Fabulous eggs'), ) class MealOrder(models.Model): meal = models.CharField(max_length=8, ...
13
votes
4answers
5k views

How do I translate a ISO 8601 datetime string into a Python datetime object?

I'm getting a datetime string in a format like "2009-05-28T16:15:00" (this is ISO 8601, I believe) one hack-ish option seems to be to parse the string using time.strptime and passing the first 6 ...
12
votes
4answers
2k views

jquery template tags conflict with Django template!

Today I'm trying to play with jquery-tmpl {{if}} & {{else}} statements. <script id="mission-dialog" type="text/x-jquery-tmpl"> <h3>${name}</h3> ...
12
votes
2answers
5k views

How do I perform query filtering in django templates

I need to perform a filtered query from within a django template, to get a set of objects equivalent to python code within a view: queryset = Modelclass.objects.filter(somekey=foo) In my template I ...
11
votes
6answers
3k views

Visual Editor for Django Templates?

Is there a tool out there for visually building Django templates? Thanks
10
votes
3answers
881 views

Django-like templates system for Java?

I'm looking for the templates engine for Java with syntax like in Django templates or Twig (PHP). Is it exists? Update: The target is to have same templates files for different languages. File ...
10
votes
3answers
397 views

How to represent “{{” in a django template?

I'm trying to output in bibtex format in Django and the template looks like this: @{{ pubentry.type }{, author = {{% for author in pubentry.authors.all %}{{ author.first_name }} {{ ...
10
votes
1answer
596 views

Can we append to a {% block %} rather than overwrite?

In my core.html I have a block labeled javascript. It would be great if I can append more lines to this block without overwriting everything in it.
10
votes
1answer
3k views

Traversing foreign key related tables in django templates

View categories = Category.objects.all() t = loader.get_template('index.html') v = Context({ 'categories': categories }) return HttpResponse(t.render(v)) Template {% for category in categories %} ...
10
votes
7answers
7k views

How to implement breadcrumbs in a Django template?

Some solutions provided on doing a Google search for "Django breadcrumbs" include using templates and block.super, basically just extending the base blocks and adding the current page to it. ...
10
votes
4answers
10k views

Django Template Variables and Javascript

When I render a page using the Django template renderer, I can pass in a dictionary variable containing various values to manipulate them in the page using {{ myVar }}. Is there a way to access the ...
9
votes
3answers
360 views

Any way to make {% extends '…' %} conditional? - Django

I would like to share a template between AJAX and regualr HTTP calls, the only difference is that one template needs to be served with the base.html html, the other one without. Any idea?
9
votes
4answers
806 views

Templating with Javascript or Django?

I'm building a Django web application which has a lot of html generated on the fly by ajax requests. Right now I use Django's templating language to build up html and then pass this new HTML as a ...
9
votes
4answers
529 views

Porting Django's templates engine to C

I recently wrote a simple and tiny embedded HTTP server for my C++ app (QT) and I played a little bit with Ry's http-parser and loved it. This guy is crazy. So I told to myself: "Hey! Why not port ...
9
votes
1answer
2k views

Load a Django template tag library for all views by default

I have a small typography related templatetag library that I use on almost every page. Right now I need to load it for each template using {% load nbsp %} Is there a way to load it "globally" for ...
9
votes
5answers
9k views

Django template can't see CSS files

I'm building a django app and I can't get the templates to see the CSS files... My settings.py file looks like: MEDIA_ROOT = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'media') ...
9
votes
3answers
5k views

How to get 'switch-case' statement functionality in Django templates?

I found a link to have a 'switch' tag in Django templates, but I was wondering if this can be somehow achieved without it. Using only the stuff which comes with Django? Basically is there other way ...
9
votes
6answers
6k views

How to make Django slugify work properly with Unicode strings?

What can I do to prevent slugify filter from stripping out non-ASCII alphanumeric characters? (I'm using Django 1.0.2) cnprog.com has Chinese characters in question URLs, so I looked in their code. ...
9
votes
4answers
3k views

What are the steps to make a ModelForm work with a ManyToMany relationship with an intermediary model in Django?

I have a Client and Groupe Model. A Client can be part of multiple groups. Clients that are part of a group can use its group's free rental rate at anytime but only once. That is where the ...
8
votes
1answer
89 views

Thread Safety with Template Tags

After reading this document about thread safety, I am left feeling that there is something missing in the documentation, or my reading of it, or my reasoning. Let's give a simple example: class ...
8
votes
3answers
151 views

get the version of django for application

I am starting a new( actually very old) project which I know is in django. I am getting lost knowing the exact version of django it has been build upon. Is there any way I can know the version of ...
8
votes
4answers
4k views

Creating a dynamic choice field

I'm having some trouble trying to understand how to create a dynamic choice field in django. I have a model set up something like: class rider(models.Model): user = models.ForeignKey(User) ...
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. ...
8
votes
5answers
1k views

Komodo Edit 5.2 Django Template Syntax Error - Info: <head> previously mentioned

I am using Komodo Edit 5.2 for editing html and Django template files. It always shows a single syntax error inside the first {% block %} area on the first tag of my template. For example: {% ...
8
votes
3answers
2k views

Django template and Python dictionary data structure question

I am trying to present a dictionary from my view.py at the HTML template such as: test = { 'works': True, 'this fails':False } and in the template: This works without a problem: {{ test.works }} ...
8
votes
2answers
6k views

django templates: include and extends

I would like to provide the same content inside 2 different base files. So I'm trying to do this: page1.html: {% extends "base1.html" %} {% include "commondata.html" %} page2.html: {% extends ...
8
votes
4answers
2k views

Comma separated lists in django templates

If fruits is the list ['apples', 'oranges', 'pears'], is there a quick way using django template tags to produce "apples, oranges, and pears"? I know it's not difficult to do this using a loop and ...
8
votes
5answers
3k views

Performing a getattr() style lookup in a django template

Python's getattr() method is useful when you don't know the name of a certain attribute in advance. This functionality would also come in handy in templates, but I've never figured out a way to do ...
8
votes
6answers
5k views

How do I add multiple arguments to my custom template filter in a django template?

Here's my custom filter: from django import template register = template.Library() @register.filter def replace(value, cherche, remplacement): return value.replace(cherche, remplacement) and ...
7
votes
3answers
452 views

Django: Overriding AND extending an app template

If you want to override a template coming with an app in django (in app/templates/app/) you create a template of the same name in another directory, which the template loader checks before the app's ...
7
votes
3answers
2k views

Django {{ MEDIA_URL }} blank

I have banged my head over this for the last few hours. I can not get {{ MEDIA_URL }} to show up in settings.py .. MEDIA_URL = 'http://10.10.0.106/ame/' .. TEMPLATE_CONTEXT_PROCESSORS = ( ...
7
votes
3answers
933 views

Easy Way to Escape Django Template Variables

For a new project we're writing documentation about the Django template system. We use Django for the documentation project itself too, so Django picks up all our example variables in the sample code ...
7
votes
1answer
430 views

Django: How to display Validation errors not specific to a field?

I have errors raised in the form's clean method (not tied to a field). How do I display them in the template? I tried {{ forms.errors }} and {{ form.non_field_errors }} but neither worked.
7
votes
4answers
2k views

Django tags for templates in Eclipse

I'm wondering if is it possible to have autocompletion, autoformatting, and those beautiful things working in Eclipse IDE for Django based templates. Mainly for these things: {% ... %} {{ ... }} ...
7
votes
1answer
2k views

Django, choices option field

i have a question about the choices option field. i have this field: SECUENCIA = ( ('1','1'), ('2','2'), ('3','3'), ) secuencia = ...
7
votes
3answers
941 views

Reusing django templates?

I find django's template language very limiting. Following along with django's DRY principle, I have a template that I'd like to use in many other templates. For example a patient list: {% for ...

1 2 3 4 5 38