-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstores.html
132 lines (116 loc) · 4.57 KB
/
stores.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CovidKashmir</title>
{% include 'favicons.html' %}
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="assets/css/bulma.min.css">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/sortable-theme-minimal.css">
<link rel="stylesheet" href="/assets/css/brands.min.css">
<link rel="stylesheet" href="/assets/css/fontawesome.min.css">
<link rel="stylesheet" href="/assets/css/solid.min.css">
<link rel="stylesheet" href="/assets/css/datalab.css">
<link rel="stylesheet" href="/assets/css/stores.css">
<script src="assets/js/jquery-3.4.1.min.js"></script>
<script src="assets/js/sortable.min.js"></script>
<script src="assets/js/utils.js"></script>
<link href="/assets/css/montserrat.css" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/leaflet.css"/>
<link rel="stylesheet" href="/assets/css/leaflet.awesome-markers.css">
<script src="assets/js/leaflet.js"></script>
<script src="assets/js/leaflet.awesome-markers.js"></script>
</head>
<body>
<div id="include-header">
{% include 'header.html' %}
</div>
<div id="include-navbar">
{% include 'navbar.html' %}
</div>
<section class="section">
<div class="container">
<article class="message is-danger">
<div class="message-header">
<p>This Page Has Been Archived.</p>
<button class="delete" aria-label="delete"></button>
</div>
<div class="message-body">
This Page was created to provide details about those Stores notified by Srinagar Adminstration for Online/Oncall Delivery of Food, Medicine etc.
This Page is no longer updated.
</div>
</article>
<div class="message-header">
<p><span class="icon"><i class="fas fa-map"></i></span><span>Map View</span></p>
</div>
<div class="message-body">
<div id="mapid">
</div>
<h3 class="has-text-centered">All stores aren't located on this map due to their absence on Google Maps. Below
table contains details of all stores. </h3>
<h3 class="has-text-centered"><a href="mailto:[email protected]">Inform us about missing locations</a>
</h3>
</div>
<div class="message-header">
<p><span class="icon"><i class="fas fa-store"></i></span><span>List of Stores</span></p>
<p><a id="sourcelink" class="has-text-white" href="https://twitter.com/srinagaradmin/status/1245979874327584768?s=19">View Source</a></p>
</div>
<div class="message-body">
<div id="data-table">
<progress class="progress is-hidden is-small is-primary" max="100">75%</progress>
<h1 id="nodata-error" class="subtitle is-1 has-text-centered is-hidden">NO DATA FOUND</h1>
<div id="store-tabs" class="tabs is-fullwidth is-boxed">
<ul>
<li class="is-active"><a href="javascript:switchType(0)">Grocery</a></li>
<li><a href="javascript:switchType(1)">Medical</a></li>
</ul>
</div>
<div class="table-container">
<table id="table-grocery" class="table is-fullwidth is-bordered is-striped" style="overflow-x:auto;">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Area</th>
<th>Contact No.</th>
<th>Designated Official</th>
<th>Contact No.</th>
<th>View on Google Maps</th>
<th>Source</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<table id="table-medical" class="table is-fullwidth is-bordered is-striped is-hidden" style="overflow-x:auto;">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Address</th>
<th>Contact No.</th>
<th>View on Google Maps</th>
<th>Source</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="include-footer">
{% include 'footer.html' %}
</div>
<script src="assets/js/stores.js"></script>
<script src="assets/js/localDebug.js"></script>
<script src="assets/js/widgetFunction.js"></script>
<!-- <script src="assets/js/newsFeed.js"></script> -->
</body>
</html>