Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mattia Rizzolo
nm.debian.org
Commits
8604dc4a
Commit
8604dc4a
authored
Mar 13, 2012
by
Enrico Zini
Browse files
Seems to work, let's use it
parent
07a6d5d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
backend/models.py
View file @
8604dc4a
...
@@ -96,7 +96,7 @@ class Person(models.Model):
...
@@ -96,7 +96,7 @@ class Person(models.Model):
sn
=
models
.
CharField
(
"last name"
,
max_length
=
250
,
null
=
True
,
blank
=
True
)
sn
=
models
.
CharField
(
"last name"
,
max_length
=
250
,
null
=
True
,
blank
=
True
)
email
=
models
.
EmailField
(
"email address"
,
null
=
False
,
unique
=
True
)
email
=
models
.
EmailField
(
"email address"
,
null
=
False
,
unique
=
True
)
# This is null for people who still have not picked one
# This is null for people who still have not picked one
uid
=
models
.
CharField
(
"Debian account name"
,
max_length
=
32
,
null
=
True
,
unique
=
True
,
blank
=
True
)
uid
=
Char
Null
Field
(
"Debian account name"
,
max_length
=
32
,
null
=
True
,
unique
=
True
,
blank
=
True
)
# OpenPGP fingerprint, NULL until one has been provided
# OpenPGP fingerprint, NULL until one has been provided
fpr
=
CharNullField
(
"OpenPGP key fingerprint"
,
max_length
=
80
,
null
=
True
,
unique
=
True
,
blank
=
True
)
fpr
=
CharNullField
(
"OpenPGP key fingerprint"
,
max_length
=
80
,
null
=
True
,
unique
=
True
,
blank
=
True
)
status
=
models
.
CharField
(
"current status in the project"
,
max_length
=
20
,
null
=
False
,
status
=
models
.
CharField
(
"current status in the project"
,
max_length
=
20
,
null
=
False
,
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment