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-06-01 20:52:15 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3629b82003e0b42c9f39083b33dd1be8851b94cc
3629b820
1 parent
bcd7fa34
Modify--Add function to show address
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
12 deletions
views/results/medicine.ejs
views/results/park.ejs
views/results/medicine.ejs
View file @
3629b82
<h4> 동물약국 현황</h4>
<h4>
💊
동물약국 현황</h4>
<table class="table">
<thead class="thead-dark">
<tr>
<th>동물약국명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<%=titles%>
</td>
</tr>
<%for (var i=0; i <category_list.length; i++){%>
<tr>
<td>
<%=category_list[i].title._text%>
</td>
<td>
<%=category_list[i].venue._text%>
</td>
</tr>
<%}%>
</tbody>
</table>
...
...
views/results/park.ejs
View file @
3629b82
...
...
@@ -3,14 +3,20 @@
<thead class="thead-dark">
<tr>
<th>도시공원명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<%=titles%>
</td>
</tr>
<%for (var i=0; i <appliance_list.length; i++){%>
<tr>
<td>
<%=appliance_list[i].title._text%>
</td>
<td>
<%=appliance_list[i].venue._text%>
</td>
</tr>
<%}%>
</tbody>
</table>
...
...
Please
register
or
login
to post a comment