blob: 59edc72f4a6b492edb700fd1dc262c69805f57bd [file] [log] [blame]
Iftekharul Islam8b4828a2017-04-19 14:37:55 -05001<div id="event-log">
2 <div class="row column">
Michael Davise126be72017-05-08 11:20:12 -05003 <h1>Event log</h1>
Iftekharul Islam8b4828a2017-04-19 14:37:55 -05004 </div>
5 <section class="row column">
6 <div class="page-header">
7 <h2 class="inline h4">All events generated by the system</h2>
8 <div class="event-log__timezone inline float-right">
9 <button class="dropdown__button" ng-click="timezone = timezone == true ? false : true;" toggle-flag="timezone"
10 >User timezone: <span ng-show="tmz== 'EDT'">EDT (UTC-4)</span><span ng-show="tmz=='UTC'">UTC - 0</span>
11 </button>
12 <ul class="dropdown__list inline" ng-show="timezone">
13 <li>
14 <button ng-click="tmz = 'EDT'; timezone=false;">User timezone: EDT (UTC-4)</button>
15 </li>
16 <li>
17 <button ng-click="tmz = 'UTC'; timezone=false;">UTC Timezone : UTC - 0</button>
18 </li>
19 </ul>
20 </div>
21 </div>
22 </section>
23 <!-- Filters -->
24 <section class="row column">
25 <!-- search -->
26 <log-search-control></log-search-control>
27 <!-- filters -->
28 <log-filter></log-filter>
29 </section> <!-- end filter -->
30 <section id="event-log__events" class="row column">
Michael Davisb76d5f02017-06-19 14:23:45 -050031 <div id="event__actions-bar" class="row header__actions-bar no-margin">
Iftekharul Islam8b4828a2017-04-19 14:37:55 -050032 <div class="column small-1 large-1 event-log__col-check">
33 <label class="control-check">
34 <input type="checkbox" name="events__check-all" ng-model="all" ng-checked="(logs|filter:{selected: true}).length == logs.length"/>
Michael Davisb76d5f02017-06-19 14:23:45 -050035 <span class="control__indicator"></span>
Iftekharul Islam8b4828a2017-04-19 14:37:55 -050036 </label>
37 </div>
38 <div class="column small-11 large-11 end col-logged-events">
39 <!-- top bar confirmation - ADD ACTIVE CLASS TO DISPLAY-->
40 <div class="inline__confirm event__confirm" ng-class="{active: confirm}">
41 <div class="inline__confirm-message">
42 <p class="h3"><i></i>Are you sure you want to <strong class="ng-binding">delete {{selectedEvents.length}} logs</strong>?
43 </p>
44 </div>
45 <div class="inline__confirm-buttons">
46 <button class="btn-primary" ng-click="accept()">Yes</button>
47 <button class="btn-primary" ng-click="confirm = false">No</button>
48 </div>
49 </div>
Iftekharul Islamf2d74642017-07-10 16:42:14 -050050 <p class="inline" ng-show="selectedEvents.length"><span class="event__select-count">{{selectedEvents.length}}</span> Events are Selected</p>
51 <p class="inline" ng-hide="selectedEvents.length"><span class="event__select-count">{{filteredLogs.length}}</span> Events are Logged</p>
Iftekharul Islam8b4828a2017-04-19 14:37:55 -050052 <!-- when logs are selected, this text changes to show how many logs are checked -->
53 <div class="event__actions">
54 <button class="inline btn-delete" ng-show="selectedEvents.length || all" ng-click="confirm= ! confirm">
55 <img class="event__icon" src="assets/images/icon-trashcan-white.svg" alt="">Delete
56 </button>
Iftekharul Islamf2d74642017-07-10 16:42:14 -050057 <button class="inline btn-resolve" ng-show="selectedEvents.length || all" ng-click="resolve()">
Iftekharul Islam8b4828a2017-04-19 14:37:55 -050058 <img class="event__icon" src="assets/images/icon-checklist-white.svg" alt="">Mark as resolved
59 </button>
60 <a ng-href="data:text/json;charset=utf-8,{{export_data}}" class="inline btn-export" download="{{export_name}}" ng-show="selectedEvents.length || all">Export</a>
61 </div>
62 </div>
63 </div>
Iftekharul Islamc0161392017-06-14 15:46:15 -050064 <log-event
Iftekharul Islamd19b7182017-06-22 09:27:47 -050065 dir-paginate="event in (filteredLogs = (logs|filter:filterBySeverity|filter:filterByStatus|filter:filterByDate|filter:filterBySearchTerms | orderBy:'+Id'))| itemsPerPage: itemsPerPage"
Iftekharul Islamc0161392017-06-14 15:46:15 -050066 event="event"
Iftekharul Islam8b4828a2017-04-19 14:37:55 -050067 tmz="tmz">
68 </log-event>
69 </section>
70 <dir-pagination-controls template-url="common/directives/dirPagination.tpl.html"></dir-pagination-controls>
Iftekharul Islamd19b7182017-06-22 09:27:47 -050071</div> <!-- end event log -->