Showing
1 changed file
with
24 additions
and
0 deletions
views/results/hospital.ejs
0 → 100644
1 | +<h4>🌳 동물병원 현황</h4> | ||
2 | +<table class="table"> | ||
3 | + <thead class="thead-dark"> | ||
4 | + <tr> | ||
5 | + <th>동물병원명</th> | ||
6 | + <th>도로명주소</th> | ||
7 | + </tr> | ||
8 | + </thead> | ||
9 | + <tbody> | ||
10 | + <%for (var i=0; i <hospitals.length; i++){%> | ||
11 | + <tr> | ||
12 | + <td> | ||
13 | + <%=hospitals[i].PARK_NM%> | ||
14 | + </td> | ||
15 | + <td> | ||
16 | + <%=hospitals[i].REFINE_ROADNM_ADDR%> | ||
17 | + </td> | ||
18 | + </tr> | ||
19 | + <%}%> | ||
20 | + </tbody> | ||
21 | +</table> | ||
22 | +<p class="sum">총 동물병원 개수 : | ||
23 | + <%=city_parks.length%> | ||
24 | +</p> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment