We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
The text was updated successfully, but these errors were encountered:
backoffice: decision added to workflow admin view
269f4c8
* ref: cern-sis/issues-inspire#549
40d6683
bcefebd
990f06c
DonHaul
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: