Closed drjova closed 2 months ago
We should display the decision 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 WorkflowsDecisionsInline(admin.StackedInline): model = Decision extra = 0 can_delete = False show_change_link = True readonly_fields = [ action, workflows, _updated_at user, ]
and this should be added to WorkflowAdmin in the inlines
inlines
Acceptance:
We should display the decision 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: