Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Hjelp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-App-Hjelp
Merge requests
!101
Update and fix project files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update and fix project files
update/project-files
into
master
Overview
0
Commits
4
Pipelines
2
Changes
9
Merged
Jonathan Weth
requested to merge
update/project-files
into
master
3 years ago
Overview
0
Commits
4
Pipelines
2
Changes
9
Expand
0
0
Merge request reports
Compare
master
version 1
6513bba1
3 years ago
master (base)
and
latest version
latest version
6cb34381
4 commits,
3 years ago
version 1
6513bba1
3 commits,
3 years ago
9 files
+
73
−
3877
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
aleksis/apps/hjelp/forms.py
+
23
−
7
Options
@@ -61,13 +61,16 @@ class IssueForm(forms.Form):
),
)
free_text
=
forms
.
CharField
(
label
=
_
(
"
Please specify the issue according to the chosen category.
"
),
required
=
False
,
label
=
_
(
"
Please specify the issue according to the chosen category.
"
),
required
=
False
,
)
short_description
=
forms
.
CharField
(
label
=
_
(
"
Please describe the issue in one sentence.
"
),
required
=
True
)
long_description
=
forms
.
CharField
(
widget
=
forms
.
Textarea
,
label
=
_
(
"
Please describe the issue in more detail.
"
),
required
=
False
,
widget
=
forms
.
Textarea
,
label
=
_
(
"
Please describe the issue in more detail.
"
),
required
=
False
,
)
@@ -82,23 +85,36 @@ class FeedbackForm(forms.Form):
)
performance_rating
=
forms
.
ChoiceField
(
label
=
_
(
"
Speed
"
),
choices
=
ratings
,
widget
=
forms
.
RadioSelect
(),
required
=
True
,
label
=
_
(
"
Speed
"
),
choices
=
ratings
,
widget
=
forms
.
RadioSelect
(),
required
=
True
,
)
usability_rating
=
forms
.
ChoiceField
(
label
=
_
(
"
User friendliness
"
),
choices
=
ratings
,
widget
=
forms
.
RadioSelect
(),
required
=
True
,
label
=
_
(
"
User friendliness
"
),
choices
=
ratings
,
widget
=
forms
.
RadioSelect
(),
required
=
True
,
)
overall_rating
=
forms
.
ChoiceField
(
label
=
_
(
"
AlekSIS in general
"
),
choices
=
ratings
,
widget
=
forms
.
RadioSelect
(),
required
=
True
,
label
=
_
(
"
AlekSIS in general
"
),
choices
=
ratings
,
widget
=
forms
.
RadioSelect
(),
required
=
True
,
)
apps
=
forms
.
CharField
(
label
=
_
(
"
What do you like? What would you change?
"
),
required
=
False
,
widget
=
forms
.
Textarea
,
label
=
_
(
"
What do you like? What would you change?
"
),
required
=
False
,
widget
=
forms
.
Textarea
,
)
more
=
forms
.
CharField
(
label
=
_
(
"
What else do you want to tell us?
"
),
required
=
False
,
widget
=
forms
.
Textarea
,
label
=
_
(
"
What else do you want to tell us?
"
),
required
=
False
,
widget
=
forms
.
Textarea
,
)
ideas
=
forms
.
CharField
(
Loading