This repository has been archived by the owner on Dec 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
counseling.html
91 lines (91 loc) · 3.71 KB
/
counseling.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href = "assets/css/bootstrap.min.css">
<link rel="stylesheet" href = "assets/css/font-awesome.min.css">
<link rel = "stylesheet" href = "css/global.css">
<script src = "assets/js/jquery.js" onload = "window.$ = window.jQuery = module.exports;"></script>
<script src = "assets/js/bootstrap.js"></script>
<script src = "assets/js/vue.js"></script>
<script src = "js/globals.js"></script>
<script src = "js/jumpstart.js" defer></script>
<style type = "text/css">
textarea {
height: 25vh !important;
}
</style>
<title>Editor</title>
</head>
<body>
<div id = "main">
<navbar preview-page = "counseling"></navbar>
<div class = "container-fluid">
<json-form page = "counseling">
<json-string name = "Overview" path = "['overview']" big = "true"></json-string>
<h3>Mission</h3>
<json-string name = "Name" path = "['mission']['name']"></json-string>
<json-string name = "Lead" path = "['mission']['lead']"></json-string>
<json-string name = "Statement" path = "['mission']['statement']" big = "true"></json-string>
<h3>Philosophy</h3>
<json-string name = "Text" path = "['philosophy']['text']"></json-string>
<json-simple-table
name = "Principles"
path = "['philosophy']['principles']">
</json-simple-table>
<h3>Links</h3>
<json-string name = "Name" path = "['links']['name']"></json-string>
<json-string name = "Lead" path = "['links']['lead']"></json-string>
<json-table
name = "Links"
path = "['links']['links']"
:columns = "['name', 'description', 'link']">
</json-table>
<p>The following few fields refer to the four buttons under the collection of links.</p>
<h4>Freshmen</h4>
<json-string name = "Name" path = "['links']['grades'][0]['name']"></json-string>
<json-string name = "Link" path = "['links']['grades'][0]['link']"></json-string>
<h4>Sophomores</h4>
<json-string name = "Name" path = "['links']['grades'][1]['name']"></json-string>
<json-string name = "Link" path = "['links']['grades'][1]['link']"></json-string>
<h4>Juniors</h4>
<json-string name = "Name" path = "['links']['grades'][2]['name']"></json-string>
<json-string name = "Link" path = "['links']['grades'][2]['link']"></json-string>
<h4>Seniors</h4>
<json-string name = "Name" path = "['links']['grades'][3]['name']"></json-string>
<json-string name = "Link" path = "['links']['grades'][3]['link']"></json-string>
<h3>Graduation Requirements</h3>
<json-string name = "Name" path = "['graduationRequirements']['name']"></json-string>
<json-string name = "Lead" path = "['graduationRequirements']['lead']"></json-string>
<json-table
name = "Requirements"
path = "['graduationRequirements']['requirements']"
:columns = "['department', 'description', 'credits']">
</json-table>
<h3>Dates</h3>
<json-string name = "Name" path = "['dates']['name']"></json-string>
<json-string name = "Lead" path = "['dates']['lead']"></json-string>
<h4>SAT</h4>
<json-string name = "Link" path = "['dates']['sat']['link']"></json-string>
<json-simple-table
name = "Test Dates"
path = "['dates']['sat']['testDates']">
</json-simple-table>
<json-simple-table
name = "Registration Dates"
path = "['dates']['sat']['registrationDates']">
</json-simple-table>
<h4>ACT</h4>
<json-string name = "Link" path = "['dates']['act']['link']"></json-string>
<json-simple-table
name = "Test Dates"
path = "['dates']['act']['testDates']">
</json-simple-table>
<json-simple-table
name = "Registration Dates"
path = "['dates']['act']['registrationDates']">
</json-simple-table>
</json-form>
</div>
</div>
</body>
</html>