Browse Source

travel und project models now have date hierarchy based on project end

master
alpcentaur 1 year ago
parent
commit
402a6f047c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      input/admin.py

+ 2
- 2
input/admin.py View File

@ -89,9 +89,9 @@ class IFGAdmin(admin.ModelAdmin):
class TravelAdmin(admin.ModelAdmin):
save_as = True
search_fields = ['realname', 'granted_date']
list_display = ('realname', 'granted', 'granted_date', 'project')
list_display = ('realname', 'granted', 'granted_date', 'project_end', 'project')
list_display_links = ('realname', 'project')
date_hierarchy = 'granted_date'
date_hierarchy = 'project_end'
@admin.register(Email)
class EmailAdmin(admin.ModelAdmin):

Loading…
Cancel
Save