-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvents.html
More file actions
159 lines (156 loc) · 6.64 KB
/
Events.html
File metadata and controls
159 lines (156 loc) · 6.64 KB
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882">
<head>
<meta charset="utf-8"/>
<title></title>
<!--[if gte mso 9]><xml>
<mso:CustomDocumentProperties>
<mso:_dlc_DocId msdt:dt="string">XCD4ME7X7URU-1497597693-96</mso:_dlc_DocId>
<mso:_dlc_DocIdItemGuid msdt:dt="string">6e10bf18-bafc-48e3-a4cf-f93bc76332b6</mso:_dlc_DocIdItemGuid>
<mso:_dlc_DocIdUrl msdt:dt="string">http://dev/sites/Trigger/_layouts/15/DocIdRedir.aspx?ID=XCD4ME7X7URU-1497597693-96, XCD4ME7X7URU-1497597693-96</mso:_dlc_DocIdUrl>
</mso:CustomDocumentProperties>
</xml><![endif]-->
<script src="../_layouts/15/MicrosoftAjax.js"></script>
<script src="../_layouts/15/sp.runtime.js"></script>
<script src="../_layouts/15/sp.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/jquery.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/bootstrap.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/jquery.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/jquery.dataTables.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/dataTables.buttons.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/buttons.print.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/buttons.bootstrap.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/vendor/buttons.html5.min.js"></script>
<script src="../SiteAssets/TriggersApp/js/custom/events.js"></script>
<link rel="stylesheet" type="text/css" href="../SiteAssets/TriggersApp/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="../SiteAssets/TriggersApp/css/jquery.dataTables.min.css"/>
<link rel="stylesheet" type="text/css" href="../SiteAssets/TriggersApp/css/buttons.bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="../SiteAssets/TriggersApp/css/buttons.datTables.min.css"/>
<link rel="stylesheet" type="text/css" href="../SiteAssets/TriggersApp/css/triggers.css"/>
<link rel="stylesheet" type="text/css" href="../SiteAssets/TriggersApp/css/custom.css"/>
<div id="triggerbanner" class="container-fluid" style="width:100%;">
<img src="../SiteAssets/TriggersApp/images/triggers_new logo.png" />
</div>
<div class="section">
<a id="login" href="Profile.aspx">My Profile</a>
<div id="navpills" class="container">
<div class="row">
<div class="col-md-12">
<ul class="nav nav-pills">
<li><a href="MyDashboard.aspx">Home</a></li>
<li><a href="Triggers.aspx">Triggers</a></li>
<li class="active"><a href="Events.aspx">Events /Reviews</a></li>
<li><a href="Reports.aspx">Reports</a></li>
<li><a href="Drafts.aspx">Drafts</a></li>
<li><a href="Mitigation.aspx">Mitigation</a></li>
<li><a href="Feedback.aspx">Feedback</a></li>
<li><a href="Acronyms.aspx">Acronyms</a></li>
<li><a href="References.aspx">References </a></li>
</ul>
</div>
</div>
</div>
</div>
</head>
<body>
<div>
<label id="filter" for="ddlfilter">Phase:</label>
<select id="ddlfilter">
<option value="selectvalue" selected="selected">Select Value</option>
<option value="Sustainment">Sustainment</option>
<option value="Development">Development</option>
<option value="Test">Test</option>
<option value="Production">Production</option>
<option value="FleetIntroduction">Fleet Introduction</option>
</select>
</div>
<div class="outer">
<div class="fullTopHalf">
<div class="eventsquadrant1" style="float: left;">
<h2>All Events/Reviews</h2>
<div style="height: 400px; width: 100%;">
<table id="events" style="width: 100%;">
<thead>
<tr>
<th>
Event
</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<div id="dashboardbuttons" style="display: none;">
<button type="button" class="btn btn-success" onclick="AddEvent()">Add Event</button>
<br>
<br>
<button type="button" class="btn btn-danger" onclick="RemoveEvent()">Remove</button>
</div>
<div id="myprogramevents">
<h2>My Program Events</h2>
<div class="gridView">
<table class="display" id="myEvents">
<thead>
<tr>
<th>
Event
</th>
<th>
Due Date
</th>
<th>
Status
</th>
<th>
Date Completed
</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<div class="fullBottomHalf" style="display: none;">
<div class="quadrant3">
<h2>Issues</h2>
<div class="gridView" style="height: 350px;">
<table class="display" id="Issues">
<thead>
<tr>
<th>
Issues
</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<div class="quadrant4">
<h2>Issue Description</h2>
<div class="gridView" style="height: 400px;">
<table class="display" id="IssueDescription">
<thead>
<tr>
<th>
Description
</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
</div>
<div id="currentuserprofile">
<div id="userID">UserID</div>
<div id="userName">UserName</div>
<div id="userProgram">UserProgram</div>
<div id="digestmsg"></div>
<div id="error"></div>
</div>
</body>
</html>