-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathcontact-area-list.html
More file actions
55 lines (45 loc) · 2.43 KB
/
contact-area-list.html
File metadata and controls
55 lines (45 loc) · 2.43 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
<div class="page-header">
<div class="row">
<div class="col-md-8">
<h2>{{ ::vm.translate.get('Contact Areas')}}</h2>
</div>
<div class="col-md-4 text-right">
<a ui-sref="contact-area-create" class="btn btn-primary"><span class="glyphicon glyphicon-plus"></span>{{ ::vm.translate.get('Create Contact Area')}} </a>
</div>
</div>
</div>
<table class="table table-striped">
<thead>
<tr>
<th>{{ ::vm.translate.get('Name')}}</th>
<th>{{ ::vm.translate.get('Actions')}}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="contactArea in vm.contactAreas">
<td>{{contactArea.name}}</td>
<td>
<a ui-sref="contact-area-edit({id: contactArea.id})" title="Edit" class="btn btn-primary btn-xs"> <span class="glyphicon glyphicon-pencil"></span></a>
<button ng-click="vm.deleteContactArea(contactArea)" class="btn btn-danger btn-xs delete"> <span class="glyphicon glyphicon-remove"></span></button>
<a ui-sref="contact-area-translation({id: contactArea.id, culture: culture})" class="btn btn-default btn-xs btn-translate" ng-repeat="culture in vm.enableCultures">
<span class="flag flag-{{culture.substr(culture.length - 2).toLowerCase()}}" alt="{{culture}}" title="{{culture}}"></span>
</a>
</td>
</tr>
</tbody>
</table>
<br />
<br />
<p style="text-align:center ; font-size:20px;">Our points of Sale</p>
<br /><br />
<div class="row">
<div class="card col-md-4" style=" box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); transition: 0.3s; width: 30%; margin-left: 30px;border-radius:5px">
<img src="https://i.pinimg.com/originals/ee/60/00/ee6000997058733b905fb06978f1bf8a.jpg" alt="hello" style="width: 350px; height: 220px" />
<p style="font-size:18px">Default warehouse</p>
<p>364 Cong Hoa,Hồ Chí Minh</p>
<p>☎ +32(0) 34 87 54 23</p>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-envelope-fill" viewBox="0 0 16 16">
<path d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555ZM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757Zm3.436-.586L16 11.801V4.697l-5.803 3.546Z" />
</svg>
</div>
</div>