• This project
    • Loading...
  • Sign in

zuzitsu / UR_Village

%ea%b7%b8%eb%a6%bc1
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
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • UR_Village
  • views
  • results
  • culture.ejs
  • 이학주's avatar
    Modify css · 982844ce
    982844ce Browse Files
    이학주 authored 2020-12-09 03:22:59 +0900
culture.ejs 552 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<h4>🎬 영화관 현황</h4>
<table class="table">
    <thead class="thead-dark">
        <th>사업장명</th>
        <th>도로명주소</th>
    </thead>
    <tbody>
        <%for (var i =0; i <movies.length; i++){%>
            <tr>
                <td>
                    <%=movies[i].BIZPLC_NM%>
                </td>
                <td>
                    <%=movies[i].REFINE_ROADNM_ADDR%>
                </td>
            </tr>
            <%}%>
    </tbody>
</table>


<p class = "sum">총 영화관 개수 :
    <%=movies.length%>
</p>