safe.ejs
1.03 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
<h4>📷 CCTV 현황</h4>
<table class="table">
<thead class="thead-dark">
<tr>
<th>도로명주소</th>
<th>카메라대수</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <cctvs.length; i++){%>
<tr>
<td>
<%=cctvs[i].REFINE_LOTNO_ADDR%>
</td>
<td>
<%=cctvs[i].CAMERA_CNT%>
</td>
</tr>
<%}%>
</tbody>
</table>
<hr class="divide">
<h4>💡 보안등 현황</h4>
<table class="table">
<thead class="thead-dark">
<tr>
<th>도로명주소</th>
<th>설치개수</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <lights.length; i++){%>
<tr>
<td>
<%=lights[i].REFINE_LOTNO_ADDR%>
</td>
<td>
<%=lights[i].INSTL_CNT %>
</td>
</tr>
<%}%>
</tbody>
</table>