Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
tools.ethertoff
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
26
Issues
26
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
osp
tools.ethertoff
Commits
3315e87f
Commit
3315e87f
authored
May 13, 2019
by
gijs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make biography optional
parent
a2d4fbe3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
contour/models.py
contour/models.py
+1
-1
No files found.
contour/models.py
View file @
3315e87f
...
...
@@ -75,7 +75,7 @@ class Participant(models.Model):
projects
=
models
.
ManyToManyField
(
'Project'
,
through
=
'ProjectParticipant'
)
name_nl
=
models
.
CharField
(
max_length
=
255
,
null
=
True
,
blank
=
True
)
sort_name_nl
=
models
.
CharField
(
max_length
=
255
,
null
=
True
,
blank
=
True
)
bio_nl
=
models
.
TextField
(
verbose_name
=
"Biography"
)
bio_nl
=
models
.
TextField
(
verbose_name
=
"Biography"
,
null
=
True
,
blank
=
True
)
name_en
=
models
.
CharField
(
max_length
=
255
,
verbose_name
=
"Name (English)"
,
null
=
True
,
blank
=
True
)
sort_name_en
=
models
.
CharField
(
max_length
=
255
,
verbose_name
=
"Sortname (English)"
,
null
=
True
,
blank
=
True
)
bio_en
=
models
.
TextField
(
verbose_name
=
"Biography (English)"
,
null
=
True
,
blank
=
True
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment