-
Notifications
You must be signed in to change notification settings - Fork 0
/
rsb.html
248 lines (235 loc) · 10.6 KB
/
rsb.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!-- <template id="vueRightSidebar"> -->
<div class="w3-container w3-white" style="height: 20px; position:sticky; top:54px; z-index:10;">
</div>
<!-- ICON/NAME/IMAGE -->
<div style="background-color: #666; width:336px; height: 280px; margin: 0px auto 24px auto; text-align: center;">Advertisement</div>
<div class="w3-container w3-white" style="border:height: 50px; position:sticky; top:74px; padding: 0px 0 3px 0; display:flex;">
<img id="sb_icon" v-bind:src="school.Icon" height="36px" style="margin:4px;" />
<h4 style="display:inline; font-weight:bold;" id="sb_schoolname">{{ school.FullName }}</h4>
</div>
<div v-if="hasImage" class="w3-container" style="width: 100%; padding: 0"><img id="sb_image" v-bind:src="school.Image" width="370px" height="200px" /></div>
<div v-else class="w3-container" style="width: 100%; padding: 0"><img id="sb_image" src="/cfpimages/generic-grad.jpg" width="370px" height="200px" /></div>
<!-- TABS -->
<div class="w3-bar" style="background-color: white; position:sticky; top:120px; z-index:10; padding: 0">
<button id="tabAdmissions" tabclass="rsb" class="tablink w3-bar-item w3-button" style="margin-left: 0px">Admissions</button>
<button id="tabNotes" tabclass="rsb" class="tablink w3-bar-item w3-button" style="margin-left: 0px">Notes</button>
<button id="tabInfo" tabclass="rsb" class="tablink w3-bar-item w3-button" style="margin-left: 0px">Info</button>
<button id="tabGear" tabclass="rsb" class="tablink w3-bar-item w3-button" style="margin-left: 0px">Gear</button>
</div>
<!-- CONTENT -->
<div class="w3-container w3-light-gray" style="height:1200px; padding: 8px">
<div id="contentAdmissions" tabclass="rsb" class="tabcontent">
<strong style="font-size:15px">Admissions Stats</strong>
<table id="tblAdmissions" border="1" cellspacing="0" cellpadding="4" width="100%">
<thead>
<tr>
<td></td>
<td style="text-align: center; font-size: 13px; font-weight: bold" width="1%">Total</td>
<td style="text-align: center; font-size: 13px; font-weight: bold" width="1%">Men</td>
<td style="text-align: center; font-size: 13px; font-weight: bold" width="1%">Women</td>
</tr>
</thead>
<tbody>
<tr>
<td style="font-size: 13px; font-weight: bold">Applied: </td>
<td id="applcn">{{ school.applcn }}</td>
<td id="applcnm">{{ school.applcnm }}</td>
<td id="applcnw">{{ school.applcnw }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">Admitted: </td>
<td id="admssn">{{ school.admssn }}</td>
<td id="admssnm">{{ school.admssnm }}</td>
<td id="admssnw">{{ school.admssnw }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">Enrolled: </td>
<td id="enrlt">{{ school.enrlt }}</td>
<td id="enrlm">{{ school.enrlm }}</td>
<td id="enrlw">{{ school.enrlw }}</td>
</tr>
</tbody>
</table>
<br />
<strong style="font-size:15px">Test Scores</strong>
<table id="tblScores" border="1" cellspacing="0" cellpadding="4" width="100%">
<thead>
<tr>
<td width="300"> </td>
<td style="text-align: center; font-size: 13px; font-weight: bold" width="50%">25th %</td>
<td style="text-align: center; font-size: 13px; font-weight: bold" width="50%">75th %</td>
</tr>
</thead>
<tbody>
<tr>
<td style="font-size: 13px; font-weight: bold">SAT Math: </td>
<td id="satmt25">{{ school.satmt25 }}</td>
<td id="satmt75">{{ school.satmt75 }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">SAT EBRW: </td>
<td id="satvr25">{{ school.satvr25 }}</td>
<td id="satvr75">{{ school.satvr75 }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">ACT Composite: </td>
<td id="actcm25">{{ school.actcm25 }}</td>
<td id="actcm75">{{ school.actcm75 }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">ACT Math: </td>
<td id="actmt25">{{ school.actmt25 }}</td>
<td id="actmt75">{{ school.actmt75 }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">ACT Math: </td>
<td id="actmt25">{{ school.acten25 }}</td>
<td id="actmt75">{{ school.acten75 }}</td>
</tr>
</tbody>
</table>
<!-- <br />
<strong style="font-size:15px">Factors Considered</strong>
<table id="tblFactors" border="1" cellspacing="0" cellpadding="4" width="100%">
<tbody>
<tr>
<td colspan="2" style="font-size: 13px; font-weight: bold; background-color: #ccc">Academic: </td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">High school record:</td>
<td class="factor">{{ school.cons_hsrecord }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">High school class rank:</td>
<td class="factor">{{ school.cons_hsrank }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">High school academic GPA:</td>
<td class="factor">{{ school.cons_hsgpa }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">Standardized test scores:</td>
<td class="factor">{{ school.cons_admtestscores }}</td>
</tr>
<tr>
<td style="font-size: 13px; font-weight: bold">Recommedation(s):</td>
<td class="factor">{{ school.cons_recommendations }}</td>
</tr>
</tbody>
</table> -->
</div>
<div id="contentNotes" tabclass="rsb" class="tabcontent">
<br />
Hello World
<select class="w3-third w3-blue w3-select w3-medium" id="sb_interest">
<option class="w3-gray" value="" disabled selected>Interest</option>
<option class="w3-lightgray">Not Interested</option>
<option class="w3-white">Not Very</option>
<option class="w3-white">Neutral</option>
<option class="w3-white">Somewhat</option>
<option class="w3-white">Very</option>
</select>
<select class="w3-third w3-blue w3-select w3-medium" id="sb_classification">
<option class="w3-gray" value="" disabled selected>Type</option>
<option class="w3-white">Safety</option>
<option class="w3-white">Target</option>
<option class="w3-white">Reach</option>
</select>
<select class="w3-third w3-blue w3-select w3-medium" id="sb_status">
<option class="w3-gray" value="" disabled selected>Status</option>
<option class="w3-white">Interested</option>
<option class="w3-white">Applied</option>
<option class="w3-white">Accepted</option>
<option class="w3-white">Waitlisted</option>
<option class="w3-white">Enrolled</option>
<option class="w3-white">Denied</option>
</select>
<strong style="font-size:15px">Interest: </strong>
<select id="sb_interest">
<option>Not Interested</option>
<option>Not Very</option>
<option>Neutral</option>
<option>Somewhat</option>
<option>Very</option>
</select>
<br />
<strong style="font-size:15px">Classification: </strong>
<select id="sb_interest2">
<option></option>
<option>Safety</option>
<option>Target</option>
<option>Reach</option>
</select>
<br />
<strong style="font-size:15px">Status: </strong>
<select id="sb_status2">
<option></option>
<option>Interested</option>
<option>Applied</option>
<option>Accepted</option>
<option>Waitlisted</option>
<option>Enrolled</option>
<option>Denied</option>
</select>
<br />
<strong style="font-size:15px">Notes</strong>
<br />
<textarea cols="34" rows="6" id="school_notes"></textarea>
</div>
<div id="contentInfo" tabclass="rsb" class="tabcontent">
<tr><td colspan="2">
<br /><strong style="font-size:15px">Contact Info</strong>
<table id="contactinfo" style="border: 0px; width: 100%">
<tr><td width="100px">Phone:</td><td><span id="sb_phone">{{ school.Phone }}</span></td></tr>
<tr valign="top" style="margin-top:100px;">
<td>Address:</td>
<td><a id="side-address" target="_blank"><span id="sb_address_line1">{{ school.Address1 }}</span><span id="sb_address_line2">{{ school.City }}, {{ school.State }} {{ school.Zip }}</span></a></td>
</tr>
<tr v-if="school.Website"><td width="100px">Website:</td><td><span id="sb_phone"><a v-bind:href="school.Website">{{ school.Website }}</a></span></td></tr>
<div style="display:flex; justify-content: space-evenly; width:98%; margin:18px auto 0 auto;">
<div class="w3-button w3-blue" style="font-size: 15px; margin: 2px; padding: 6px;" v-if="school.VirtualTour"><a v-bind:href="school.VirtualTour">Virtual Tour</a></div>
<div class="w3-button w3-blue" style="font-size: 15px; margin: 2px; padding: 6px;" v-if="school.CampusMap"><a v-bind:href="school.CampusMap">Campus Map</a></div>
<div class="w3-button w3-blue" style="font-size: 15px; margin: 2px; padding: 6px;" v-if="school.Directions"><a v-bind:href="school.Directions">Directions</a></div>
<div class="w3-button w3-blue" style="font-size: 15px; margin: 2px; padding: 6px;" v-if="school.Parking"><a v-bind:href="school.Parking">Parking</a></div>
</div>
</td></tr>
<tr>
<td align="center" colspan="2" id="sb_map" v-html="schoolmap"></td>
</tr>
</table>
<div style="display:grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; width: 150px; margin:8px auto;">
<div v-if="school.Facebook"><a v-bind:href="school.Facebook"><img src="/cfpimages/icon-facebook.png" width="28px" /></a></div>
<div v-if="school.LinkedIn"><a v-bind:href="school.LinkedIn"><img src="/cfpimages/icon-linkedin.png" width="28px" /></a></div>
<div v-if="school.Twitter"><a v-bind:href="school.Twitter"><img src="/cfpimages/icon-twitter.png" width="28px" /></a></div>
<div v-if="school.Instagram"><a v-bind:href="school.Instagram"><img src="/cfpimages/icon-instagram.png" width="28px" /></a></div>
<div v-if="school.Youtube"><a v-bind:href="school.Youtube"><img src="/cfpimages/icon-youtube.png" width="28px" /></a></div>
</div>
<ol>
<!-- <li v-if="school.Website"><a v-bind:href="school.Website">{{ school.Website }}</a></li> -->
<li v-if="school.About"><a v-bind:href="school.About">About</a></li>
<li v-if="school.Visit"><a v-bind:href="school.Visit">Visit</a></li>
<li v-if="school.ContactInfo"><a v-bind:href="school.ContactInfo">ContactInfo</a></li>
<li v-if="school.RequestInfo"><a v-bind:href="school.RequestInfo">RequestInfo</a></li>
</ol>
</div>
<div id="contentGear" tabclass="rsb" class="tabcontent">
<br /><strong style="font-size:15px">School Gear2</strong>
<table class="w3-table">
<tr>
<th>Area of Study</th>
<th>Majors</th>
<th>Undergrads</th>
</tr>
<tr v-for="m in majors">
<td>{{ m.cipTitle }}</td>
<td>{{ m.NumberOfMajors }}</td>
<td>{{ m.NumberOfUnderGradsMajor }}</td>
</tr>
</table>
</div>
</div>
<footer class="w3-container w3-green">
<h5>Footer</h5>
</footer>
<!-- </div> -->
<!-- </template> -->