21 lines
1002 B
Plaintext
21 lines
1002 B
Plaintext
<% 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('\&','\&') %></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>
|
|
<% } %> |