Hey everyone. I've run into an issue with dictionaries in templates, and
I'm kind of stuck. I'm trying to track incidents by username and month.
Here's what I have passed into a template:

months = ['Mar', 'Feb', 'Aug', 'Sep', 'Apr', 'Jan', 'May', 'Nov', 'Dec',
'Oct']
mapping = {'username': u'jdoe5', 'incidents': {'Mar': 0L, 'Feb': 28L,
'Aug': 0L, 'Sep': 0L, 'Apr': 0L, 'Jan': 0L, 'May': 0L, 'Nov': 0L, 'Dec':
0L, 'Oct': 0L}}

Here's where the problem occurs:

{% for month in month %}
{{ mapping.incidents.month }}
{% endfor %}

I'm trying to make Django call mapping['incidents']['Mar'],
mapping['incidents']['Jul'], and so on for each month in the months
list. But instead, Django seems to be doing
mapping['incidents']['month'] each time.

Is there any way to resolve the dynamic "month" variable inside the
mapping.incidents.month call? Something almost like {{
mapping.incidents.param="month" }}?

Or should I try to rework the way my code works?

Thanks for the help,

Nick

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to