Skip to content

Commit 74419f0

Browse files
authored
Merge pull request #9 from Airship46n/fmsreport
Fms report page
2 parents 2547609 + 6ea1b42 commit 74419f0

File tree

7 files changed

+64
-1
lines changed

7 files changed

+64
-1
lines changed

app.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,12 @@ def home():
794794

795795
@app.route("/about")
796796
def about():
797-
return render_template("about.html")
797+
return render_template("about.html", pageTitle="About CampusPulse Access")
798+
799+
800+
@app.route("/fmsreport")
801+
def fmsreport():
802+
return render_template("fmsreport.html", pageTitle="Reporting to the RIT Service Center")
798803

799804

800805
@app.route("/map")

static/images/fms_step1.png

152 KB
Loading

static/images/fms_step2.png

83 KB
Loading

static/images/fms_step3.png

42 KB
Loading

static/images/fms_step4.png

65.6 KB
Loading
932 KB
Loading

templates/fmsreport.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{% extends "header.html" %}
2+
{% block title %}
3+
Reporting to the RIT Service Center
4+
{% endblock %}
5+
{% block dynamic_content %}
6+
7+
<div class="container text-center">
8+
<h1>{{ pageTitle }}</h1>
9+
10+
11+
<!-- Edited from a boiler plate that was "thrown together" -->
12+
<div class="container my-5">
13+
<div class="row align-items-start">
14+
<div class="col-md-12">
15+
<img class="img-fluid" alt="RIT Service Center Homepage" src="{{ url_for('static', filename='images/service_center_homepage.png') }}">
16+
</div>
17+
18+
<div class="col-md-12 pt-4 h-100">
19+
<div class="text-start">
20+
<p>There are two options: “Open a Ticket” and “Submit a Maintenance Request”
21+
<ul>
22+
<li>“Open a Ticket” is for questions, concerns, or if you are generally unsure where to go. The Service Center will receive these tickets and delegate them to the relevant department. This type of request is not relevant for the types of accessibility reports from CampusPulse.</li>
23+
<li>“Maintenance Request” is for specific repairs to the facilities, such as elevators, handicap doors, etc.</li>
24+
</ul>
25+
</div>
26+
</div>
27+
</div>
28+
</div>
29+
30+
<h2 class="col-md-12 pt-4 h-100">To Submit a Maintenance Request</h2>
31+
32+
<ol class="row align-items-start">
33+
<li class="col-md-6 pt-4">
34+
<p class="text-start">There is a wide range of options that can be selected. Please select the most applicable category. For example, a broken handicap door button would fall under “FMS Facilities Request”
35+
</li>
36+
<img class="img-fluid col-md-6 pt-4" alt="The various categories of maintenance requests" src="{{ url_for('static', filename='images/fms_step1.png') }}">
37+
38+
<li class="col-md-6 pt-4">
39+
<p class="text-start">Add a phone number and choose a contact method for updates about the request. Note that it is unlikely they will use this number unless they need to get into your room.
40+
</li>
41+
<img class="img-fluid col-md-6 pt-4" alt="Contact details related to the service request" src="{{ url_for('static', filename='images/fms_step2.png') }}">
42+
43+
<li class="col-md-6 pt-4">
44+
<p class="text-start">Record the location of the issue by identifying the building, floor, room, and any additional details. If you are unsure of the exact room number, please refer to the building floorplans at https://www.rit.edu/facilitiesmanagement/buildings-maps. Use whichever room number you think will help FMS most easily find the location. For example, chair lifts and door buttons should use the room number of the entryway or hallway they are connected to. Feel free to include additional directions in the “Location Details” box (e.g. “Outside of the main entrance of Eastman Hall, facing the sentinel”).
45+
</li>
46+
<img class="img-fluid col-md-6 pt-4" alt="Location details related to the service request" src="{{ url_for('static', filename='images/fms_step3.png') }}">
47+
48+
<li class="col-md-6 pt-4">
49+
<p class="text-start">Write out a description of the issue, and attach any photos or any documentation. Photos can also help FMS locate the issue. Make sure to include any relevant information that would help FMS diagnose the problem, such as which particular button is broken.
50+
</li>
51+
<img class="img-fluid col-md-6 pt-4" alt="Written description of the service request" src="{{ url_for('static', filename='images/fms_step4.png') }}">
52+
53+
<li class="col-md-6 pt-4">
54+
<p class="text-start">Once you have completed all fields, press submit on the right side of the screen.
55+
</li>
56+
</ol>
57+
</div>
58+
{% endblock %}

0 commit comments

Comments
 (0)