|
|
@ -32,7 +32,7 @@ class TeamMemberAdmin(admin.ModelAdmin):
|
|
|
|
readonly_fields = ("id", "url")
|
|
|
|
readonly_fields = ("id", "url")
|
|
|
|
list_display = ("name", "shift_count")
|
|
|
|
list_display = ("name", "shift_count")
|
|
|
|
inlines = (FallbackAssignmentInline,)
|
|
|
|
inlines = (FallbackAssignmentInline,)
|
|
|
|
actions = (assign_random_shifts, clear_shifts, reshuffle_shifts)
|
|
|
|
actions = (assign_random_shifts, clear_shifts) # , reshuffle_shifts)
|
|
|
|
|
|
|
|
|
|
|
|
def shift_count(self, object):
|
|
|
|
def shift_count(self, object):
|
|
|
|
return object.fallback_shifts.count()
|
|
|
|
return object.fallback_shifts.count()
|
|
|
|