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