nas-denar/views/partial/podruznice.ejs

21 lines
1002 B
Plaintext
Raw Permalink Normal View History

2017-09-14 20:06:51 +02:00
<% if(podruznice.length > 0) { %>
<h2>Podružnice</h2>
<table class="table">
<thead>
<tr>
<th>Naziv</th>
<th>Matična številka</th>
<th>Naslov</th>
</tr>
</thead>
<% for(var i = 0; i < podruznice.length; i++) { %>
<tr>
<td><%= podruznice[i].popolnoime.replace('\&amp;','\&') %></a></td>
<td><%= podruznice[i].ma %></td>
<td><%= podruznice[i].ulica %> <%= podruznice[i].hs || '' %><%= podruznice[i].dodatek %>, <%= podruznice[i].po %> <%= podruznice[i].posta %></td>
</tr>
<% } %>
</table>
<% } else { %>
<p>Ni podatkov.</p>
<% } %>