forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMailHist.html
More file actions
51 lines (46 loc) · 1.59 KB
/
Copy pathMailHist.html
File metadata and controls
51 lines (46 loc) · 1.59 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
<div class="row">
<div class="col-sm-20">
<h1 class="pagetitle" translate lib="web">emailhistdetails</h1>
</div>
</div>
<style type="text/css">
.list-group-item:hover {
color: #337ab7;
text-shadow: 0 0 1em #337ab7;
cursor: pointer;
}
.listgroupitemselected {
border: 6px;
border-color: black;
background-color: #337ab7;
color: white;
cursor: pointer;
}
</style>
<div ng-show="ctrl.errormessage != ''"" class=" alert alert-danger" role="alert">{{ctrl.errormessage}}</div>
<form ng-submit="ctrl.submit()" class="form-horizontal" role="form" autocomplete="off">
<div class="form-group">
<label for="name" class="col-sm-2 control-label" translate lib="web">name</label>
<div class="col-sm-6">
<input ng-model="ctrl.model.name" class="form-control input-md" ng-disabled="ctrl.loading==true" />
</div>
</div>
<div class="form-group">
<label for="name" class="col-sm-2 control-label" translate lib="web">read</label>
<div class="col-sm-6">
<div class="custom-switch">
<input type="checkbox" id="rparole" ng-model="ctrl.model.read">
<label for="read">read</label>
</div>
</div>
</div>
<div class="form-inline" ng-repeat="m in ctrl.model.opened">
<label class="col-sm-1 control-label"><timesince ng-model="m.dt" /></label>
<div class="col-sm-3">
{{m.ip}} / {{m.domain}}
</div>
<div class="col-sm-7">
{{m.agent}}
</div>
</div>
</form>