Changes between Version 2 and Version 4 of Ticket #10064
- Timestamp:
- Jan 18, 2009, 4:17:08 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10064
- Property Cc added
-
Ticket #10064 – Description
v2 v4 36 36 shell:[[BR]] 37 37 38 '''transactions=Transaction.objects.select_related('category','account_from','account_to').annotate(Sum('amount')).order_by('category','updated_at')'''39 40 '''print transactions'''41 38 {{{ 39 >>> transactions=Transaction.objects.select_related('category','account_from','account_to').annotate(Sum('amount')).order_by('category','updated_at') 40 >>> print transactions 42 41 Traceback (most recent call last): 43 42 File "<console>", line 1, in <module>