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
/
parentOrganizations.html
106 lines (106 loc) · 3.78 KB
/
parentOrganizations.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
<!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>
<title>Editor</title>
</head>
<body>
<div id = "main">
<navbar preview-page = "information#parentOrganizations"></navbar>
<div class = "container-fluid">
<p class = "pull-right">
Jump to: <a href = "#agp">Aftergrad Party</a> | <a href = "#sgc">SGC</a>
</p>
<json-form page = "information">
<json-string name = "Section Name" path = "['parentOrganizations']['name']"></json-string>
<json-string name = "Section Lead" path = "['parentOrganizations']['lead']"></json-string>
<h3>PTO</h3>
<json-table
name = "Officers"
id = "pto-officers"
path = "['parentOrganizations']['pto']['officers']"
:columns = "['name', 'position', 'email']">
</json-table>
<br />
<json-string name = "Meeting Dates (Description)" id = "pto-meeting-dates-desc" path = "['parentOrganizations']['pto']['meetingDates']['description']"></json-string>
<json-simple-table
name = "Meeting Dates (Schedule)"
id = "pto-meeting-schedules"
path = "['parentOrganizations']['pto']['meetingDates']['dates']"
column = "dates">
</json-simple-table>
<br />
<json-table
name = "Meeting Minutes"
id = "pto-meeting-minutes"
path = "['parentOrganizations']['pto']['meetingMinutes']"
:columns = "['text', 'link']"
></json-table>
<br />
<json-table
name = "Fundraisers"
id = "pto-fundraisers"
path = "['parentOrganizations']['pto']['fundraisers']"
:columns = "['name', 'link']"
></json-table>
<h3 id = "agp">Aftergrad Party</h3>
<json-string name = "Meeting Dates (Description)" id = "agp-meeting-dates-desc" path = "['parentOrganizations']['afterGrad']['meetingDates']['description']"></json-string>
<json-simple-table
name = "Meeting Dates (Schedule)"
id = "agp-meeting-schedules"
path = "['parentOrganizations']['afterGrad']['meetingDates']['dates']"
column = "dates">
</json-simple-table>
<br />
<json-table
name = "Donation Forms"
id = "agp-donations"
path = "['parentOrganizations']['afterGrad']['donationForms']"
:columns = "['name', 'link']"
></json-table>
<br />
<json-table
name = "How Can You Help?"
id = "agp-help"
path = "['parentOrganizations']['afterGrad']['aids']"
:columns = "['name', 'description']"
></json-table>
<br />
<json-table
name = "Updates"
id = "agp-updates"
path = "['parentOrganizations']['afterGrad']['updates']"
:columns = "['name', 'description']"
></json-table>
<h3 id = "sgc">SGC</h3>
<json-table
name = "Members"
id = "sgc-members"
path = "['parentOrganizations']['sgc']['members']"
:columns = "['name', 'position', 'email']">
</json-table>
<json-string name = "Meeting Dates (Description)" id = "sgc-meeting-dates-desc" path = "['parentOrganizations']['sgc']['meetingDates']['description']"></json-string>
<json-simple-table
name = "Meeting Dates (Schedule)"
id = "sgc-meeting-schedules"
path = "['parentOrganizations']['sgc']['meetingDates']['dates']"
column = "dates">
</json-simple-table>
<json-table
name = "Meeting Minutes"
id = "sgc-meeting-minutes"
path = "['parentOrganizations']['sgc']['meetingMinutes']"
:columns = "['text', 'link']"
></json-table>
</json-form>
</div>
</div>
</body>
</html>