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
352353ed
Commit
352353ed
authored
Dec 04, 2013
by
Jean Michel Rouly
Browse files
Renamed reply plural.
parent
ab27cb2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
researchquestions/website/models.py
View file @
352353ed
...
...
@@ -10,6 +10,9 @@ class Question( models.Model ):
text
=
models
.
TextField
(
max_length
=
1000
)
rating
=
models
.
IntegerField
(
default
=
0
)
class
Meta
:
ordering
=
[
"rating"
]
def
get_comments
(
self
):
comments
=
Comment
.
objects
.
filter
(
parent__pk
=
self
.
pk
)
return
comments
...
...
@@ -40,5 +43,8 @@ class Reply( models.Model ):
text
=
models
.
TextField
()
parent
=
models
.
ForeignKey
(
'Comment'
)
class
Meta
:
verbose_name_plural
=
"replies"
def
__unicode__
(
self
):
return
'%s, %s'
%
(
self
.
user
,
self
.
date
)
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