Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Jean Michel Rouly
research-questions
Commits
4d3362ad
Commit
4d3362ad
authored
Mar 08, 2014
by
Jean Michel Rouly
Browse files
Validate model sections with a regular expression.
parent
c51c806c
Changes
1
Hide whitespace changes
Inline
Side-by-side
researchquestions/website/models.py
View file @
4d3362ad
...
...
@@ -3,6 +3,7 @@ from django.utils import timezone
from
datetime
import
datetime
from
django.contrib.auth.models
import
User
from
django.conf
import
settings
from
django.core.validators
import
RegexValidator
import
hashlib
import
os
...
...
@@ -12,7 +13,12 @@ class Question( models.Model ):
date
=
models
.
DateTimeField
(
default
=
timezone
.
now
())
text
=
models
.
TextField
(
max_length
=
1000
)
rating
=
models
.
IntegerField
(
default
=
0
)
section
=
models
.
TextField
(
max_length
=
10
,
blank
=
False
)
section_regex
=
RegexValidator
(
regex
=
r
'[a-zA-Z]+ {0,1}[0-9]*'
)
section
=
models
.
CharField
(
max_length
=
10
,
blank
=
True
,
validators
=
[
section_regex
]
)
class
Meta
:
ordering
=
[
"-rating"
]
...
...
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