WiP Started kivi original ad view.
This commit is contained in:
33
app/views/viewRealEstate.ejs
Normal file
33
app/views/viewRealEstate.ejs
Normal file
@@ -0,0 +1,33 @@
|
||||
<br>
|
||||
<div class="row">
|
||||
<% for (const field of booleanFields){ %>
|
||||
<p>
|
||||
<span><%= field.title %></span>
|
||||
|
||||
</p>
|
||||
<% } %>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<div class="row">
|
||||
<% for (const field of inputFields){ %>
|
||||
<p>
|
||||
<span><%= field.title %></span>
|
||||
<span><%= allInputValues[field.dbField] %></span>
|
||||
</p>
|
||||
<% } %>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<div class="row">
|
||||
<% for (const field of segmentFields){ %>
|
||||
<p>
|
||||
<span><%= field.title %></span>
|
||||
<% for (const segmentObject of field.values) { %>
|
||||
<% if (allSegmentSelectedValues[field.dbField] === segmentObject.id) { %>
|
||||
<span><%= segmentObject.title %></span>
|
||||
<% } %>>
|
||||
<% } %>
|
||||
</p>
|
||||
<% } %>
|
||||
</div>
|
||||
Reference in New Issue
Block a user