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
b91cd65e
Commit
b91cd65e
authored
Feb 21, 2015
by
Daniel W Bond
Browse files
inital detail_floor and detail_room templates
parent
eb6cc946
Changes
2
Hide whitespace changes
Inline
Side-by-side
roomlist/housing/templates/detail_floor.html
View file @
b91cd65e
...
...
@@ -6,13 +6,15 @@
<div
class=
"row"
>
<div
class=
"col-lg-12 text-center"
>
<h1><strong>
GMU
</strong>
ROOMLIST
</h1>
<p
class=
"lead"
>
{{ floor.building.name }}{{ floor.number }}
</p>
<p
class=
"lead"
>
<strong>
{{ floor.building.name }}{{ floor.number }}
</
strong></
p>
</div>
</div>
</div>
{% for room in rooms %}
{{ room.number }}
{% endfor %}
<div
class=
"row"
>
{% for student in students %}
{{ student }}
{% endfor %}
</div>
{% endblock %}
roomlist/housing/templates/detail_room.html
0 → 100644
View file @
b91cd65e
{% extends 'layouts/base.html' %}
{% block title %} SRCT RoomList
•
{{ room.floor.building.name }} {{ room.number }}{% endblock %}
{% block content %}
<div
class=
"page-header"
id=
"banner"
>
<div
class=
"row"
>
<div
class=
"col-lg-12 text-center"
>
<h1><strong>
GMU
</strong>
ROOMLIST
</h1>
<p
class=
"lead"
><strong>
{{ room.floor.building.name }}{{ room.number }}
</strong></p>
</div>
</div>
</div>
<div
class=
"row"
>
{% for student in students %}
{{ student }}
{% endfor %}
</div>
{% endblock %}
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