medicine.ejs 615 Bytes
<h4> 💊동물약국 현황</h4>
<table class="table">
    <thead class="thead-dark">
        <tr>
            <th>동물약국명</th>
            <th>도로명주소</th>
        </tr>
    </thead>
    <tbody>
        <%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>
<p class="sum">총 동물약국 개수 :
    <%-category_list.length%>
</p>