public
Description: Django-beancounter is a simple app I built to track my income and expenses.
Homepage: http://github.com/lincolnloop/django-beancounter
Clone URL: git://github.com/lincolnloop/django-beancounter.git
minor admin tweaks
lincolnloop (author)
Mon Jan 05 16:54:18 -0800 2009
commit  5b15796cec3a3f638bfa427bee88b4ac46d88c99
tree    3336a7dd36dcce4d2536606228877d8286a80cc4
parent  1c4c5ca68bda347f824ba4c41b41a8025e664750
...
34
35
36
37
 
38
 
39
40
41
...
34
35
36
 
37
38
39
40
41
42
0
@@ -34,8 +34,9 @@ class ProjectAdmin(admin.ModelAdmin):
0
     inlines = [ProjectInvoiceInline,]
0
     
0
 class ProjectTimeAdmin(admin.ModelAdmin):
0
-    list_display = ('project', 'employee', 'hours', 'cost_converted')
0
+    list_display = ('employee', 'start_date', 'project', 'hours', 'cost', 'cost_converted')
0
     list_filter = ('project', 'employee')
0
+    date_hierarchy = 'start_date'
0
 
0
 class AccountTransferOptions(admin.ModelAdmin):
0
     list_display = ('date','amount','from_account','to_account')

Comments