Changes between Version 2 and Version 4 of Ticket #10064


Ignore:
Timestamp:
Jan 18, 2009, 4:17:08 PM (15 years ago)
Author:
Alex Gaynor
Comment:

cleaned up the formatting of the description slightly.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10064

    • Property Cc flosch@… added
  • Ticket #10064 – Description

    v2 v4  
    3636shell:[[BR]]
    3737
    38 '''transactions=Transaction.objects.select_related('category','account_from','account_to').annotate(Sum('amount')).order_by('category','updated_at')'''
    39 
    40 '''print transactions'''
    4138{{{
     39>>> transactions=Transaction.objects.select_related('category','account_from','account_to').annotate(Sum('amount')).order_by('category','updated_at')
     40>>> print transactions
    4241Traceback (most recent call last):
    4342  File "<console>", line 1, in <module>
Back to Top