Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Site Interludes
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mediatek
Site Interludes
Commits
3f8e4d4f
Commit
3f8e4d4f
authored
3 years ago
by
Dorian Lesbre
Browse files
Options
Downloads
Patches
Plain Diff
Extend character length on activity description
parent
7c23d495
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
home/migrations/0004_auto_20210424_1544.py
+18
-0
18 additions, 0 deletions
home/migrations/0004_auto_20210424_1544.py
home/models.py
+1
-1
1 addition, 1 deletion
home/models.py
with
19 additions
and
1 deletion
home/migrations/0004_auto_20210424_1544.py
0 → 100644
+
18
−
0
View file @
3f8e4d4f
# Generated by Django 3.0.8 on 2021-04-24 13:44
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
home
'
,
'
0003_auto_20210407_1420
'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'
interludesactivity
'
,
name
=
'
description
'
,
field
=
models
.
TextField
(
help_text
=
'
Texte ou html selon la valeur de
"
Description HTML
"
.
\n
'
,
max_length
=
10000
,
verbose_name
=
'
description
'
),
),
]
This diff is collapsed.
Click to expand it.
home/models.py
+
1
−
1
View file @
3f8e4d4f
...
...
@@ -52,7 +52,7 @@ class InterludesActivity(models.Model):
host_name
=
models
.
CharField
(
"
nom de l
'
organisateur
"
,
max_length
=
50
)
host_email
=
models
.
EmailField
(
"
email de l
'
organisateur
"
)
description
=
models
.
TextField
(
"
description
"
,
max_length
=
2
000
,
"
description
"
,
max_length
=
10
000
,
help_text
=
'
Texte ou html selon la valeur de
"
Description HTML
"
.
\n
'
)
desc_as_html
=
models
.
BooleanField
(
"
Description au format HTML
"
,
default
=
False
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment