File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,22 @@ class CustomerAdmin(BaseAdmin):
39
39
40
40
@admin .register (ProductionDayProduct )
41
41
class ProductionDayProductAdmin (BaseAdmin ):
42
- list_display = ("production_day" , "product" , "max_quantity" )
42
+ list_display = (
43
+ "production_day" ,
44
+ "product" ,
45
+ "max_quantity" ,
46
+ "created" ,
47
+ "updated" ,
48
+ )
43
49
44
50
45
51
@admin .register (ProductionDay )
46
52
class ProductionDayAdmin (BaseAdmin ):
47
- list_display = ("day_of_sale" ,)
53
+ list_display = (
54
+ "day_of_sale" ,
55
+ "created" ,
56
+ "updated" ,
57
+ )
48
58
49
59
50
60
@admin .register (ProductionDayTemplate )
@@ -66,6 +76,7 @@ class CustomerOrderAdmin(BaseAdmin):
66
76
"point_of_sale" ,
67
77
"address" ,
68
78
"created" ,
79
+ "updated" ,
69
80
)
70
81
inlines = (CustomerOrderPositionAdmin ,)
71
82
search_fields = (
You can’t perform that action at this time.
0 commit comments