Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AKPlanning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIF
AKPlanning
Merge requests
!266
AKSubmission: Preselect types and help text for AK presenting field
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
AKSubmission: Preselect types and help text for AK presenting field
improve-submission
into
main
Overview
0
Commits
2
Pipelines
1
Changes
1
Merged
Benjamin Hättasch
requested to merge
improve-submission
into
main
1 week ago
Overview
0
Commits
2
Pipelines
1
Changes
1
Expand
Preselect all types in AK and wish submission forms
Add additional help text for present AK field
0
0
Merge request reports
Viewing commit
b5e85131
Prev
Next
Show latest version
1 file
+
6
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b5e85131
AKSubmission: Preselect types in new submissions
· b5e85131
Benjamin Hättasch
authored
1 week ago
AKSubmission/forms.py
+
6
−
0
Options
@@ -152,6 +152,9 @@ class AKSubmissionForm(AKForm):
class
Meta
(
AKForm
.
Meta
):
# Exclude fields again that were previously included in the parent class
exclude
=
[
'
link
'
,
'
protocol_link
'
]
#pylint: disable=modelform-uses-exclude
widgets
=
AKForm
.
Meta
.
widgets
|
{
'
types
'
:
forms
.
CheckboxSelectMultiple
(
attrs
=
{
'
checked
'
:
'
checked
'
}),
}
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
().
__init__
(
*
args
,
**
kwargs
)
@@ -188,6 +191,9 @@ class AKWishForm(AKForm):
class
Meta
(
AKForm
.
Meta
):
# Exclude fields again that were previously included in the parent class
exclude
=
[
'
owners
'
,
'
link
'
,
'
protocol_link
'
]
#pylint: disable=modelform-uses-exclude
widgets
=
AKForm
.
Meta
.
widgets
|
{
'
types
'
:
forms
.
CheckboxSelectMultiple
(
attrs
=
{
'
checked
'
:
'
checked
'
}),
}
class
AKOwnerForm
(
forms
.
ModelForm
):
Loading