Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2280
Make process corpus field read only in Django admin
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Make process corpus field read only in Django admin
no-process-corpus-edit
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
ml bonhomme
requested to merge
no-process-corpus-edit
into
master
11 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
closes
#1725 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8c5149b4
1 commit,
11 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
arkindex/process/admin.py
+
1
−
1
Options
@@ -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
]
Loading