34 lines
791 B
Plaintext
34 lines
791 B
Plaintext
<!--suppress HtmlUnknownAnchorTarget -->
|
|
<div class="row center-align">
|
|
<h2>Koju nekretninu tražite?</h2>
|
|
</div>
|
|
|
|
<form method="POST" id="form-real-estate-type">
|
|
<div class="row center-align">
|
|
<ul class="collection with-header">
|
|
<% for(const realEstateType of realEstateTypes) { %>
|
|
<li class="collection-item">
|
|
<div id="<%= realEstateType.id %>" onclick="saveAndSubmit(this.id)"><%= realEstateType.title %>
|
|
<a href="#" class="secondary-content">
|
|
<i class="material-icons">send</i>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
<input type="hidden" name="realestatetype" id="realestatetype" />
|
|
</div>
|
|
</form>
|
|
|
|
<script>
|
|
function saveAndSubmit(id) {
|
|
$("#realestatetype").val(id);
|
|
$("#form-real-estate-type").submit();
|
|
}
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|