Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
roomlist
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SRCT
roomlist
Commits
b91cd65e
Commit
b91cd65e
authored
Feb 21, 2015
by
Daniel W Bond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inital detail_floor and detail_room templates
parent
eb6cc946
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
4 deletions
+26
-4
roomlist/housing/templates/detail_floor.html
roomlist/housing/templates/detail_floor.html
+6
-4
roomlist/housing/templates/detail_room.html
roomlist/housing/templates/detail_room.html
+20
-0
No files found.
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