> If I would do this in the view, I couldn't do something like this in
> the template:
>
> {% for category in categories %}
> {% for expense in category.get_monthly_expenses %}
> ...
> {% endfor %}
> {% endfor %}
>
> If I do it in the view, the only way I can think of it could be
> accomplished by stuffing categories in dictionaries, appending the
> expenses...
> Is this normal to do so?

You could still traverse a path along the lines of user -> expenses ->
categories which would let you skip those categories in which a
particular user hasn't incurred in expenses.

Unless I got you completely wrong, do you want to display only the
user's expenses and still display the grand total or is the total
displayed only the sum of the user's expenses?

Anyway, I still think that the heavy lifting should be done in a view
and that the template should be in charge of just displaying what has
been sent to it.

U

--~--~---------~--~----~------------~-------~--~----~
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