Skip to content
Snippets Groups Projects
Commit a02319a1 authored by ml bonhomme's avatar ml bonhomme :bee: Committed by Erwan Rouchet
Browse files

Make process corpus field read only in Django admin

parent 9ed2defb
No related branches found
No related tags found
1 merge request!2280Make process corpus field read only in Django admin
......@@ -43,7 +43,7 @@ class ProcessAdmin(admin.ModelAdmin):
"fields": ("element", "element_type", "folder_type", "name_contains")
}),
)
readonly_fields = ("id", "name", "state", "activity_state", "template")
readonly_fields = ("id", "name", "corpus", "state", "activity_state", "template")
raw_id_fields = ("element", )
inlines = [DataFileInline, WorkerRunInline, ElementInline]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment