I have this code in template, which I would like to printout number of votes that each choice got. votes is just dictionary while choices are model object.

{% for choice in choices %}
    {{choice.choice}} - {{votes[choice.id]}} <br />
{% endfor %}

it raises an exception with this message "Could not parse the remainder" I googled it and so far no luck.

thanks in advance.

link|improve this question

feedback

5 Answers

up vote 19 down vote accepted

To echo / extend upon Jeff's comment, what I think you should aim for is simply a property in your Choice class that calculates the number of votes associated with that object:

    class Choice(models.Model):
        text = models.CharField(max_length=200)	

    def calculateVotes(self):
            return Vote.objects.filter(choice = self).count()

    votes = property(calculateVotes)

And then in your template, you can do:

    {% for choice in choices %}
            {{choice.choice}} - {{choice.votes}} <br />
    {% endfor %}

The template tag, is IMHO a bit overkill for this solution, but it's not a terrible solution either. The goal of templates in Django is to insulate you from code in your templates and vice-versa.

I'd try the above method and see what SQL the ORM generates as I'm not sure off the top of my head if it will pre-cache the properties and just create a subselect for the property or if it will iteratively / on-demand run the query to calculate vote count. But if it generates atrocious queries, you could always populate the property in your view with data you've collected yourself.

link|improve this answer
thanks @john ewart, your solution worked for me. I am newbie to django and python and can't figureout how to get the sql that ORM generated. – Mohamed Aug 14 '09 at 8:27
You can find the answer to that bit over here: docs.djangoproject.com/en/dev/faq/models/… It's quite simple, actually and can be displayed in your template, or logged with a logging facility, but you have to remember to turn DEBUG on for this to work. – John Ewart Aug 14 '09 at 14:04
this solution is perfect for a problem I've been having with django templating + google app engine models. I wish I could vote you up twice. – Conrad.Dean May 7 '11 at 16:32
feedback

you can use the dot notation:

Dot lookups can be summarized like this: when the template system encounters a dot in a variable name, it tries the following lookups, in this order:

  • Dictionary lookup (e.g., foo["bar"])
  • Attribute lookup (e.g., foo.bar)
  • Method call (e.g., foo.bar())
  • List-index lookup (e.g., foo[2])

The system uses the first lookup type that works. It’s short-circuit logic.

link|improve this answer
2  
In his case choice is a variable. Doing .choice will look up the value for the key "choice" rather the value for the key choice. – ibz Jan 30 '11 at 9:35
+1 for the info, even though the question was kind of a "guess what I'm thinking" question. Thanks Wilhelm. – eficker Oct 25 '11 at 1:31
This even works with nested dictionaries. Python code: my_dict[1][2] Template code: my_dict.1.2 – djsmith Jan 26 at 20:39
feedback

choices = {'key1':'val1', 'key2':'val2'}

Here's the template:

<ul>
{% for key, value in choices.items %} 
  <li>{{key}} - {{value}}</li>
 {% endfor %}
</ul>

Basically, ".items" is a Django keyword that splits a dictionary into a list of (key, value) pairs. This enables iteration over a dictionary in a Django template.

link|improve this answer
.items -- you just solved my issue. – Peter G Oct 1 '11 at 2:17
feedback

You need to find (or define) a 'get' template tag, for example, here.

link|improve this answer
feedback

Ideally, you would create a method on the choice object that found itself in votes, or create a relationship between the models. A template tag that performed the dictionary lookup would work, too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.