blob: 74d74aaf1fb2a120d0b9a7106bcd8332f46e47f2 [file] [log] [blame]
Michael Davisdfad5d52017-07-20 14:53:46 -05001<<<<<<< HEAD
Iftekharul Islam8947e702017-07-27 10:28:07 -05002<div id="event-log">
3 <div class="row column">
4 <h1>Event Log</h1>
5 </div>
6 <section class="row column">
7 <div class="page-header">
8 <h2 class="inline h4">Events generated by the system</h2>
9 <div class="event-log__timezone inline float-right">
10 <button class="dropdown__button" ng-click="timezone = timezone == true ? false : true;"
11 ng-blur="timezone = timezone == true ? false : false;">User timezone: EDT (UTC-4)
12 </button>
13 <ul class="dropdown__list inline" ng-show="timezone">
14 <li>
15 <button>User timezone: EDT (UTC-4)</button>
16 </li>
17 <li>
18 <button>UTC Timezone : UTC - 0</button>
19 </li>
20 </ul>
21 </div>
22 </div>
23 </section>
24 <!-- Filters -->
25 <section class="row column">
26 <!-- search -->
27 <div class="content__search">
28 <label for="content__search-input">Event Log Search</label>
29 <input id="content__search-input" type="text" placeholder="Search logs"/>
30 <input id="content__search-submit" type="submit" class="btn btn-secondary" value="Submit"/>
31 <!-- filters -->
32 <div class="event-log__filters">
33
34 </div>
35 </div>
36 </section> <!-- end filter -->
37
38 <section id="event-filter" class="row column">
39 <div class="inline event__severity-filter">
40 <p class="filter-label">Filter by severity</p>
41 <button class="inline first" ng-click="toggleall = !toggleall"
42 ng-class="toggleall ? 'btn-primary' : 'btn-secondary'">All
43 </button>
44 <button class="inline " ng-click="togglehigh = !togglehigh"
45 ng-class="togglehigh ? 'btn-primary' : 'btn-secondary'">High
46 </button>
47 <button class="inline" ng-click="togglemed = !togglemed"
48 ng-class="togglemed ? 'btn-primary' : 'btn-secondary'">Medium
49 </button>
50 <button class="inline last" ng-click="togglelow = !togglelow"
51 ng-class="togglelow ? 'btn-primary' : 'btn-secondary'">Low
52 </button>
53 </div>
54 <div class="inline event__date-filter">
55 <p class="filter-label">Filter by date range (MM/DD/YYYY)</p>
56 <div class="inline">
57 <label for="event-filter-start-date">Start Date</label>
58 <input id="event-filter-start-date" type="date" placeholder="MM/DD/YYYY" />
59 </div>
60 <strong>&ndash;</strong>
61 <div class="inline">
62 <label for="event-filter-end-date">End Date</label>
63 <input id="event-filter-end-date" type="date" placeholder="MM/DD/YYYY"/>
64 </div>
65 </div>
66 <div class="inline event__status-filter">
67 <p class="filter-label">Filter by issue status</p>
68 <!-- Status filter -->
69 <div class="dropdown__wrapper">
70 <button class="dropdown__button" ng-click="statusFilter = statusFilter == true ? false : true;"
71 ng-class="{'active' : statusFilter}">Unresolved issues
72 </button>
73 <ul class="dropdown__list inline" ng-show="statusFilter">
74 <li>
75 <button>Resolved issues</button>
76 </li>
77 <li>
78 <button>Unresolved issues</button>
79 </li>
80 </ul>
81 </div>
82 </div>
83 </section> <!-- end filter -->
84
85 <section id="event-log__events" class="row column">
86 <div id="header__actions-bar" class="row ">
87 <div class="column small-1 large-1 event-log__col-check">
88 <label class="control-check">
89 <input type="checkbox" name="events__check-all" ng-model="all"/>
90 <div class="control__indicator"></div>
91 </label>
92 </div>
93 <div class="column small-11 large-11 end col-logged-events">
94 <!-- top bar confirmation - ADD ACTIVE CLASS TO DISPLAY-->
95 <div class="inline__confirm event__confirm" ng-class="{active: confirm}">
96 <div class="inline__confirm-message">
97 <p class="h3"><i></i>Are you sure you want to <strong class="ng-binding">delete 9 logs</strong>?
98 </p>
99 </div>
100 <div class="inline__confirm-buttons">
101 <button class="btn-primary" ng-click="accept()">Yes</button>
102 <button class="btn-primary" ng-click="cancel()">No</button>
103 </div>
104 </div>
105 <p class="inline"><span class="event__select-count">999</span> Events are logged</p>
106 <!-- when logs are selected, this text changes to show how many logs are checked -->
107 <div class="event__actions">
108 <button class="inline btn-delete" ng-show="event || all" ng-click="confirm= ! confirm">
109 <img class="event__icon" src="assets/images/icon-trashcan.svg" alt="">Delete
110 </button>
111 <button class="inline btn-resolve" ng-show="event || all">
112 <img class="event__icon" src="assets/images/icon-checklist.svg" alt="">Mark as resolved
113 </button>
114 <button class="inline btn-export">Export</button>
115 </div>
116 </div>
117 </div>
118 <!-- EVENT -->
119 <div class="row column event-log__single-event"
120 ng-class="{'active': event__metadatarow, 'selected': event__selected}">
121 <div class="row">
122 <div class="inline__confirm" ng-class="{active: eventConfirm}">
123 <div class="inline__confirm-message">
124 <p class="h3"><i></i>Are you sure you want to <strong class="ng-binding">delete this
125 event</strong>?</p>
126 </div>
127 <div class="inline__confirm-buttons">
128 <button class="btn-primary" ng-click="accept()">Yes</button>
129 <button class="btn-primary" ng-click="cancel()">No</button>
130 </div>
131 </div>
132 <div class="column small-1 large-2 event-log__col-check">
133 <label class="control-check">
134 <input type="checkbox" name="event__check" ng-click="event__selected= ! event__selected"
135 ng-model="event" ng-checked="all"/>
136 <div class="control__indicator"></div>
137 </label>
138 </div>
139 <div class="column small-9 large-9 event-log__event-info"
140 ng-click="event__metadatarow = ! event__metadatarow">
141 <p class="inline event__priority med-priority">Medium</p>
142 <p class="inline event__severity">warning</p>
143 <p class="inline event__description">org.open_power.Error.Host.Event.Event</p>
144 <div>
145 <p class="inline event__id">#00997</p>
146 <p class="inline event__timestamp">03/09/2017 21:00:26 EDT</p></div>
147 </div>
148 <div class="column small-1 large-1">
149 <button class="accord-trigger" ng-class="{'active': event__metadatarow}"
150 ng-click="event__metadatarow = ! event__metadatarow"></button>
151 </div>
152 </div>
153 <div class="row event__metadata-row" ng-class="{'active': event__metadatarow}">
154 <div class="column small-1 large-1 event-log__col-check">&nbsp;</div>
155 <div class="column small-11 large-11 end">
156 <div class="event__metadata">ESEL=00 00 df 00 00 00 00 20 00 04 12 01 6f aa 00 00 50 48 00 30 01 00
157 17 00 00 00 00 04 31 71 56 4c 00 00 00 04 31 73 df b2 42 00 00 07 00 00 00 00 00 00 00 00 00 00
158 00 00 90 00 00 28 90 00 00 28 55 48 00 18 01 00 17 00 8a 03 40 00 00 00 00 00 ff ff 00 00 00 00
159 00 00 50 53 00 50 01 01 00 00 02 00 00 09 17 0e 00 48 00 00 00 e0 00 00 0a 00 00 00 00 00 00 20
160 00 00 00 05 00 01 00 2d 00 04 00 00 00 00 00 00 00 00 42 43 38 41 31 37 30 45 20 20 20 20 20 20
161 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 55 44 00 1c 01 06 01 00 02 54 41 4b 00 00
162 00 06 00 00 00 55 00 03 b6 94 00 00 00 00 55 44 00 4c 01 02 01 00 ee ee ee ee 54 61 72 67 65 74
163 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 00 00 03 00 00 00 05 00 00
164 00 14 0f 7a bb 7c 23 01 00 02 00 05 01 0b 5a fc d7 13 01 00 02 00 05 01 00 00 55 44 00 30 01 03
165 01 00 00 00 00 00 00 03 f3 54 00 00 00 00 00 03 b6 94 00 00 00 00 40 03 dd 68 00 00 00 00 40 03
166 ba 48 00 00 00 00 00 00 25 80 55 44 00 38 01 01 01 00 48 6f 73 74 62 6f 6f 74 20 42 75 69 6c 64
167 20 49 44 3a 20 68 6f 73 74 62 6f 6f 74 2d 38 36 62 61 65 31 63 2f 68 62 69 63 6f 72 65 2e 62 69
168 6e 00 00 00 df 00 00 00 00 20 00 04 12 01 6f aa 00 00 50 48 00 30 01 00 17 00 00 00 00 04 31 71
169 56 4c 00 00 00 04 31 73 df b2 42 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 90 00 00 28 90 00
170 00 28 55 48 00 18 01 00 17 00 8a 03 40 00 00 00 00 00 ff ff 00 00 00 00 00 00 50 53 00 50 01 01
171 00 00 02 00 00 09 17 0e 00 48 00 00 00 e0 00 00 0a 00 00 00 00 00 00 20 00 00 00 05 00 01 00 2d
172 00 04 00 00 00 00 00 00 00 00 42 43 38 41 31 37 30 45 20 20 20 20 20 20 20 20 20 20 20 20 20 20
173 20 20 20 20 20 20 20 20 20 20 55 44 00 1c 01 06 01 00 02 54 41 4b 00 00 00 06 00 00 00 55 00 03
174 b6 94 00 00 00 00 55 44 00 4c 01 02 01 00 ee ee ee ee 54 61 72 67 65 74 00 00 00 00 00 00 00 00
175 00 00 00 00 00 00 00 00 00 00 00 05 00 01 00 00 00 03 00 00 00 05 00 00 00 14 0f 7a bb 7c 23 01
176 00 02 00 05 01 0b 5a fc d7 13 01 00 02 00 05 01 00 00 55 44 00 30 01 03 01 00 00 00 00 00 00 03
177 f3 54 00 00 00 00 00 03 b6 94 00 00 00 00 40 03 dd 68 00 00 00 00 40 03 ba 48 00 00 00 00 00 00
178 25 80 55 44 00 38 01 01 01 00 48 6f 73 74 62 6f 6f 74 20 42 75 69 6c 64 20 49 44 3a 20 68 6f 73
179 74 62 6f 6f 74 2d 38 36 62 61 65 31 63 2f 68 62 69 63 6f 72 65 2e 62 69 6e 00 00 df 00 00 00 00
180 20 00 04 12 01 6f aa 00 00 50 48 00 30 01 00 17 00 00 00 00 04 31 71 56 4c 00 00 00 04 31 73 df
181 b2 42 00 00 07 00 00 00 00 00 00 00 00 00 00 00 00 90 00 00 28 90 00 00 28 55 48 00 18 01 00 17
182 00 8a 03 40 00 00 00 00 00 ff ff 00 00 00 00 00 00 50 53 00 50 01 01 00 00 02 00 00 09 17 0e 00
183 48 00 00 00 e0 00 00 0a 00 00 00 00 00 00 20 00 00 00 05 00 01 00 2d 00 04 00 00 00 00 00 00 00
184 00 42 43 38 41 31 37 30 45 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
185 20 55 44 00 1c 01 06 01 00 02 54 41 4b 00 00 00 06 00 00 00 55 00 03 b6 94 00 00 00 00 55 44 00
186 4c 01 02 01 00 ee ee ee ee 54 61 72 67 65 74 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
187 00 00 05 00 01 00 00 00 03 00 00 00 05 00 00 00 14 0f 7a bb 7c 23 01 00 02 00 05 01 0b 5a fc d7
188 13 01 00 02 00 05 01 00 00 55 44 00 30 01 03 01 00 00 00 00 00 00 03 f3 54 00 00 00 00 00 03 b6
189 94 00 00 00 00 40 03 dd 68 00 00 00 00 40 03 ba 48 00 00 00 00 00 00 25 80 55 44 00 38 01 01 01
190 00 48 6f 73 74 62 6f 6f 74 20 42 75 69 6c 64 20 49 44 3a 20 68 6f 73 74 62 6f 6f 74 2d 38 36 62
191 61 65 31 63 2f 68 62 69 63 6f 72 65 2e 62 69 6e 00
192 </div>
193 <div>
194 <div class="event__actions">
195 <button class="btn-meta-copy"><img class="event__icon" src="assets/images/icon-copy.svg"
196 alt="">Copy
197 </button>
198 <button class="btn-delete" ng-click="eventConfirm= ! eventConfirm"><img class="event__icon"
199 src="assets/images/icon-trashcan.svg"
200 alt=""/>Delete
201 </button>
202 <button class="btn-resolve"><img class="event__icon" src="assets/images/icon-checklist.svg"
203 alt="">Resolved
204 </button>
205 </div>
206 <div class="event__related">
207 <p class="inline event__related-label">Related items:</p>
208 <a href="" class="event__related-item">/org/openbmc/control/chassis0/</a>
209 <a href="" class="event__related-item">/org/openbmc/control/power0/</a>
210 <a href="" class="event__related-item">/org/openbmc/control/chassis0/</a>
211 <a href="" class="event__related-item">/org/openbmc/control/power0/</a>
212 </div>
213 </div>
214 </div>
215 </div>
216 </div>
217 <!-- EVENT -->
218 <div class="row column event-log__single-event"
219 ng-class="{'active': event__metadatarow_2, 'selected': event__selected_2}">
220 <div class="row">
221 <div class="inline__confirm" ng-class="{active: eventConfirm2}">
222 <div class="inline__confirm-message">
223 <p class="h3"><i></i>Are you sure you want to <strong class="ng-binding">delete this
224 event</strong>?</p>
225 </div>
226 <div class="inline__confirm-buttons">
227 <button class="btn-primary" ng-click="accept()">Yes</button>
228 <button class="btn-primary" ng-click="cancel()">No</button>
229 </div>
230 </div>
231 <div class="column small-1 large-2 event-log__col-check">
232 <label class="control-check">
233 <input type="checkbox" name="events__check" ng-click="event__selected_2= ! event__selected_2"
234 ng-checked="all"/>
235 <div class="control__indicator"></div>
236 </label>
237 </div>
238 <div class="column small-9 large-9 event-log__event-info"
239 ng-click="event__metadatarow_2 = ! event__metadatarow_2">
240 <p class="inline event__priority event-resolved">Resolved</p>
241 <p class="inline event__severity">emergency</p>
242 <p class="inline event__description">org.open_power.Error.Host.Event.Event</p>
243 <div>
244 <p class="inline event__id">#00996</p>
245 <p class="inline event__timestamp">03/09/2017 21:00:26 EDT</p></div>
246 </div>
247 <div class="column small-1 large-1">
248 <button class="accord-trigger" ng-class="{'active': event__metadatarow_2}"
249 ng-click="event__metadatarow_2 = ! event__metadatarow_2"></button>
250 </div>
251 </div>
252 <div class="row event__metadata-row" ng-class="{'active': event__metadatarow_2}">
253 <div class="column small-1 large-1 event-log__col-check">&nbsp;</div>
254 <div class="column small-11 large-11 end">
255 <div class="event__metadata">Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam
256 id dui posuere blandit. Curabitur aliquet quam id dui posuere blandit. Proin eget tortor risus.
257 Quisque velit nisi, pretium ut lacinia in, elementum id enim. Pellentesque in ipsum id orci
258 porta dapibus. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum
259 ac diam sit amet quam vehicula elementum sed sit amet dui. Curabitur arcu erat, accumsan id
260 imperdiet et, porttitor at sem. Nulla porttitor accumsan tincidunt.Curabitur aliquet quam id dui
261 posuere blandit. Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam id dui
262 posuere blandit. Proin eget tortor risus. Quisque velit nisi, pretium ut lacinia in, elementum
263 id enim. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis a
264 pellentesque nec, egestas non nisi. Vestibulum ac diam sit amet quam vehicula elementum sed sit
265 amet dui. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla porttitor
266 accumsan tincidunt.Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam id dui
267 posuere blandit. Curabitur aliquet quam id dui posuere blandit. Proin eget tortor risus. Quisque
268 velit nisi, pretium ut lacinia in, elementum id enim. Pellentesque in ipsum id orci porta
269 dapibus. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ac
270 diam sit amet quam vehicula elementum sed sit amet dui. Curabitur arcu erat, accumsan id
271 imperdiet et, porttitor at sem. Nulla porttitor accumsan tincidunt.Curabitur aliquet quam id dui
272 posuere blandit. Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam id dui
273 posuere blandit. Proin eget tortor risus. Quisque velit nisi, pretium ut lacinia in, elementum
274 id enim. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis a
275 pellentesque nec, egestas non nisi. Vestibulum ac diam sit amet quam vehicula elementum sed sit
276 amet dui. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla porttitor
277 accumsan tincidunt.
278 </div>
279 <div>
280 <div class="event__actions">
281 <button class="btn-meta-copy"><img class="event__icon" src="assets/images/icon-copy.svg"
282 alt="">Copy
283 </button>
284 <button class="btn-delete" ng-click="eventConfirm2= ! eventConfirm2"><img
285 class="event__icon"
286 src="assets/images/icon-trashcan.svg"
287 alt="">Delete
288 </button>
289 <button class="btn-resolve"><img class="event__icon" src="assets/images/icon-checklist.svg"
290 alt="">Resolved
291 </button>
292 </div>
293 <div class="event__related">
294 <p class="inline event__related-label">Related items:</p>
295 <p class="event__related-item">Attribute-1</p>
296 <p class="event__related-item">Attribute-2</p>
297 </div>
298 </div>
299 </div>
300 </div>
301 </div>
302 <!-- EVENT -->
303 <div class="row column event-log__single-event" ng-class="{'active': event__metadatarow_1}">
304 <div class="row">
305 <div class="column small-1 large-2 event-log__col-check">
306 <label class="control-check">
307 <input type="checkbox" name="events__check" ng-checked="all"/>
308 <div class="control__indicator"></div>
309 </label>
310 </div>
311 <div class="column small-9 large-9 event-log__event-info"
312 ng-click="event__metadatarow_1 = ! event__metadatarow_1">
313 <p class="inline event__priority high-priority">High</p>
314 <p class="inline event__severity">emergency</p>
315 <p class="inline event__description">Vestibulum ac diam sit amet quam vehicula aliquet quam id
316 dui</p>
317 <div>
318 <p class="inline event__id">#00995</p>
319 <p class="inline event__timestamp">03/09/2017 21:00:26 EDT</p></div>
320 </div>
321 <div class="column small-1 large-1">
322 <button class="accord-trigger" ng-class="{'active': event__metadatarow_1}"
323 ng-click="event__metadatarow_1 = ! event__metadatarow_1"></button>
324 </div>
325 </div>
326 <div class="row event__metadata-row" ng-class="{'active': event__metadatarow_1}">
327 <div class="column small-1 large-1 event-log__col-check">&nbsp;</div>
328 <div class="column small-11 large-11 end">
329 <div class="event__metadata">Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam
330 id dui posuere blandit. Curabitur aliquet quam id dui posuere blandit. Proin eget tortor risus.
331 Quisque velit nisi, pretium ut lacinia in, elementum id enim. Pellentesque in ipsum id orci
332 porta dapibus. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum
333 ac diam sit amet quam vehicula elementum sed sit amet dui. Curabitur arcu erat, accumsan id
334 imperdiet et, porttitor at sem. Nulla porttitor accumsan tincidunt.Curabitur aliquet quam id dui
335 posuere blandit. Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam id dui
336 posuere blandit. Proin eget tortor risus. Quisque velit nisi, pretium ut lacinia in, elementum
337 id enim. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis a
338 pellentesque nec, egestas non nisi. Vestibulum ac diam sit amet quam vehicula elementum sed sit
339 amet dui. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla porttitor
340 accumsan tincidunt.Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam id dui
341 posuere blandit. Curabitur aliquet quam id dui posuere blandit. Proin eget tortor risus. Quisque
342 velit nisi, pretium ut lacinia in, elementum id enim. Pellentesque in ipsum id orci porta
343 dapibus. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ac
344 diam sit amet quam vehicula elementum sed sit amet dui. Curabitur arcu erat, accumsan id
345 imperdiet et, porttitor at sem. Nulla porttitor accumsan tincidunt.Curabitur aliquet quam id dui
346 posuere blandit. Curabitur aliquet quam id dui posuere blandit. Curabitur aliquet quam id dui
347 posuere blandit. Proin eget tortor risus. Quisque velit nisi, pretium ut lacinia in, elementum
348 id enim. Pellentesque in ipsum id orci porta dapibus. Praesent sapien massa, convallis a
349 pellentesque nec, egestas non nisi. Vestibulum ac diam sit amet quam vehicula elementum sed sit
350 amet dui. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla porttitor
351 accumsan tincidunt.
352 </div>
353 <div>
354 <div class="event__actions">
355 <button class="btn-meta-copy"><img class="event__icon" src="assets/images/icon-copy.svg"
356 alt="">Copy
357 </button>
358 <button class="btn-delete"><img class="event__icon" src="assets/images/icon-trashcan.svg"
359 alt="">Delete
360 </button>
361 <button class="btn-resolve"><img class="event__icon" src="assets/images/icon-checklist.svg"
362 alt="">Resolved
363 </button>
364 </div>
365 <div class="event__related">
366 <p class="inline event__related-label">Related items:</p>
367 <p class="event__related-item">Attribute-1</p>
368 <p class="event__related-item">Attribute-2</p>
369 </div>
370 </div>
371 </div>
372 </div>
373 </div>
374 <!-- EVENT -->
375 <div class="row column event-log__single-event">
376 <div class="row">
377 <div class="column small-1 large-2 event-log__col-check">
378 <label class="control-check">
379 <input type="checkbox" name="events__check" ng-checked="all"/>
380 <div class="control__indicator"></div>
381 </label>
382 </div>
383 <div class="column small-9 large-9 event-log__event-info">
384 <p class="inline event__priority low-priority">Low</p>
385 <p class="inline event__severity">Informational</p>
386 <p class="inline event__description">org.open_power.Error.Host.Event.Event</p>
387 <div>
388 <p class="inline event__id">#00994</p>
389 <p class="inline event__timestamp">03/09/2017 21:00:26 EDT</p></div>
390 </div>
391 <div class="column small-1 large-1">
392 <button class="accord-trigger"></button>
393 </div>
394 </div>
395 <div class="row event__metadata-row">
396 <div class="column small-1 large-1 event-log__col-check">&nbsp;</div>
397 <div class="column small-11 large-11 end">
398 <div class="event__metadata">
399 </div>
400 <div>
401 <div class="event__actions">
402 <button class="btn-meta-copy"><img class="event__icon" src="assets/images/icon-copy.svg"
403 alt="">Copy
404 </button>
405 <button class="btn-delete"><img class="event__icon" src="assets/images/icon-trashcan.svg"
406 alt="">Delete
407 </button>
408 <button class="btn-resolve"><img class="event__icon" src="assets/images/icon-checklist.svg"
409 alt="">Resolved
410 </button>
411 </div>
412 <div class="event__related">
413 <p class="inline event__related-label">Related items:</p>
414 <p class="event__related-item">Attribute-1</p>
415 <p class="event__related-item">Attribute-2</p>
416 </div>
417 </div>
418 </div>
419 </div>
420 </div>
421 </section>
422 <paginate ng-include="paginate"></paginate>
Michael Davisdfad5d52017-07-20 14:53:46 -0500423</div> <!-- end event log -->
424=======
425<div id="uid-log">
426 Log contents here
427</div>
428>>>>>>> 4c1a3dd... Major update to code structure