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
!4
Include my work from our last meeting
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Include my work from our last meeting
include-my-work-from-our-last-meeting
into
master
Overview
21
Commits
6
Pipelines
0
Changes
1
Merged
Julian
requested to merge
include-my-work-from-our-last-meeting
into
master
5 years ago
Overview
21
Commits
6
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 15
fa242070
5 years ago
version 14
05a01c65
5 years ago
version 13
0ea718b7
5 years ago
version 12
0ea718b7
5 years ago
version 11
a3ee68ca
5 years ago
version 10
f1eb9968
5 years ago
version 9
f3b7493d
5 years ago
version 8
72ae86f2
5 years ago
version 7
f14b5f50
5 years ago
version 6
052d098c
5 years ago
version 5
38de15a0
5 years ago
version 4
e0ee08c1
5 years ago
version 3
14ee6bc3
5 years ago
version 2
a270bd9e
5 years ago
version 1
e18a744b
5 years ago
master (base)
and
latest version
latest version
11e7131c
6 commits,
5 years ago
version 15
fa242070
5 commits,
5 years ago
version 14
05a01c65
2 commits,
5 years ago
version 13
0ea718b7
1 commit,
5 years ago
version 12
0ea718b7
63 commits,
5 years ago
version 11
a3ee68ca
62 commits,
5 years ago
version 10
f1eb9968
61 commits,
5 years ago
version 9
f3b7493d
60 commits,
5 years ago
version 8
72ae86f2
59 commits,
5 years ago
version 7
f14b5f50
58 commits,
5 years ago
version 6
052d098c
55 commits,
5 years ago
version 5
38de15a0
54 commits,
5 years ago
version 4
e0ee08c1
52 commits,
5 years ago
version 3
14ee6bc3
51 commits,
5 years ago
version 2
a270bd9e
50 commits,
5 years ago
version 1
e18a744b
49 commits,
5 years ago
1 file
+
4
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
aleksis/apps/hjelp/models.py
+
4
−
1
Options
@@ -36,7 +36,10 @@ class FAQQuestion(models.Model):
verbose_name
=
_
(
"
Symbol
"
))
show
=
models
.
BooleanField
(
verbose_name
=
_
(
"
Published
"
),
default
=
False
)
answer_text
=
RichTextField
(
help_text
=
""
)
answer_text
=
RichTextField
(
help_text
=
_
(
"
Because of our CSS framework the HTML tag
"
"
<strong><ul></strong> must have the CSS
"
"
class <em>browser-default</em>. In this case, please
"
"
use the manual editor mode.
"
))
section
=
models
.
ForeignKey
(
FAQSection
,
on_delete
=
models
.
CASCADE
,
blank
=
True
,
related_name
=
"
questions
"
,
verbose_name
=
_
(
"
Section
"
))
Loading