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
SRCT
roomlist
Commits
a8122234
Commit
a8122234
authored
Feb 09, 2015
by
Daniel W Bond
Browse files
added permissions meta class
parent
620b5269
Changes
1
Hide whitespace changes
Inline
Side-by-side
roomlist/housing/models.py
View file @
a8122234
...
...
@@ -36,6 +36,11 @@ class Building(TimeStampedModel):
slug
=
AutoSlugField
(
populate_from
=
'name'
,
unique
=
True
)
class
Meta
:
permissions
=
(
(
'view_task'
,
'View task'
),
)
def
__str__
(
self
):
# __unicode__ on Python 2
return
self
.
name
def
__unicode__
(
self
):
# __unicode__ on Python 2
...
...
@@ -45,6 +50,11 @@ class Floor(TimeStampedModel):
building
=
models
.
ForeignKey
(
'Building'
)
number
=
models
.
IntegerField
()
class
Meta
:
permissions
=
(
(
'view_task'
,
'View task'
),
)
def
__str__
(
self
):
# __unicode__ on Python 2
return
self
.
building
.
__str__
()
+
" "
+
self
.
number
.
__str__
()
...
...
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