Eunsu486

Modify--Add function to show address

1 -<h4> 동물병원 현황</h4> 1 +<h4>🏥 동물병원 현황</h4>
2 <table class="table"> 2 <table class="table">
3 <thead class="thead-dark"> 3 <thead class="thead-dark">
4 <tr> 4 <tr>
5 <th>동물병원명</th> 5 <th>동물병원명</th>
6 + <th>도로명주소</th>
6 </tr> 7 </tr>
7 </thead> 8 </thead>
8 <tbody> 9 <tbody>
9 - <tr> 10 + <%for (var i=0; i <hospital_list.length; i++){%>
10 - <td> 11 + <tr>
11 - <%=titles%> 12 + <td>
12 - </td> 13 + <%=hospital_list[i].title._text%>
13 - 14 + </td>
14 - </tr> 15 + <td>
16 + <%=hospital_list[i].venue._text%>
17 + </td>
18 + </tr>
19 + <%}%>
15 20
16 </tbody> 21 </tbody>
17 </table> 22 </table>
......