change real estate type selection design

This commit is contained in:
Bilal Catic
2019-10-15 18:34:34 +02:00
parent e0a1444b55
commit 2a1361733f

View File

@@ -1,16 +1,17 @@
<form method="POST" id="form-real-estate-type"> <form method="POST" id="form-real-estate-type">
<div class="row center-align"> <div class="row center-align">
<ul class="collection with-header"> <div class="collection">
<% for(const realEstateType of realEstateTypes) { %> <% for(const realEstateType of realEstateTypes) { %>
<li class="collection-item">
<div id="<%= realEstateType.id %>" onclick="saveAndSubmit(this.id)"><%= realEstateType.title %> <a href="#" class="collection-item"
<a href="#" class="kivi-color secondary-content"> id="<%= realEstateType.id %>"
<i class="material-icons">send</i> onclick="saveAndSubmit(this.id)"
</a> >
</div> <%= realEstateType.title %>
</li> </a>
<% } %> <% } %>
</ul> </div>
<input type="hidden" name="realEstateType" id="realEstateType" /> <input type="hidden" name="realEstateType" id="realEstateType" />
</div> </div>
</form> </form>