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
acb91826
Commit
acb91826
authored
Jan 09, 2015
by
Daniel W Bond
Browse files
added building filters
parent
495ca793
Changes
1
Hide whitespace changes
Inline
Side-by-side
roomlist/housing/views.py
View file @
acb91826
...
...
@@ -10,6 +10,13 @@ class ListBuildings(LoginRequiredMixin, ListView):
model
=
Building
login_url
=
'/'
def
get_context_data
(
self
,
**
kwargs
):
context
=
super
(
ListBuildings
,
self
).
get_context_data
(
**
kwargs
)
context
[
'rappahannock'
]
=
Building
.
objects
.
filter
(
neighbourhood
=
'ra'
)
context
[
'shenandoah'
]
=
Building
.
objects
.
filter
(
neighbourhood
=
'sh'
)
context
[
'aquia'
]
=
Building
.
objects
.
filter
(
neighbourhood
=
'aq'
)
return
context
# building floors, other information
class
DetailBuilding
(
LoginRequiredMixin
,
DetailView
):
model
=
Building
...
...
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