Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source-group1
/
animal-Info
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Eunsu486
2021-05-25 19:36:31 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c2935780ef3f37349d7e31fa14d6630ba802caca
c2935780
1 parent
88daf62e
Add hospital.ejs
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
views/results/hospital.ejs
views/results/hospital.ejs
0 → 100644
View file @
c293578
<h4>🌳 동물병원 현황</h4>
<table class="table">
<thead class="thead-dark">
<tr>
<th>동물병원명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i=0; i <hospitals.length; i++){%>
<tr>
<td>
<%=hospitals[i].PARK_NM%>
</td>
<td>
<%=hospitals[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</table>
<p class="sum">총 동물병원 개수 :
<%=city_parks.length%>
</p>
\ No newline at end of file
Please
register
or
login
to post a comment