Closed DonHaul closed 2 months ago
Similar to https://github.com/cern-sis/issues-inspire/issues/549
We should display the tickets inside the workflow detail page in admin.
We can achieve that by using inlines in the Admin configuration. Another example is in scoap3
Tech notes:
class WorkflowsTicketsnline(admin.StackedInline): model = Decision extra = 0 can_delete = False show_change_link = True readonly_fields = [ ticket_url, ]
and this should be added to WorkflowAdmin in the inlines
inlines
Acceptance:
Similar to https://github.com/cern-sis/issues-inspire/issues/549
We should display the tickets inside the workflow detail page in admin.
We can achieve that by using inlines in the Admin configuration. Another example is in scoap3
Tech notes:
and this should be added to WorkflowAdmin in the
inlines
Acceptance: