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>
10 + <%for (var i=0; i <hospital_list.length; i++){%>
9 <tr> 11 <tr>
10 <td> 12 <td>
11 - <%=titles%> 13 + <%=hospital_list[i].title._text%>
14 + </td>
15 + <td>
16 + <%=hospital_list[i].venue._text%>
12 </td> 17 </td>
13 -
14 </tr> 18 </tr>
19 + <%}%>
15 20
16 </tbody> 21 </tbody>
17 </table> 22 </table>
......