Files

73 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2022-04-11 06:32:47 +02:00
<% if(it.layout_clean_mode) {%>
<% layout("../layouts/admin/Clean") %>
<% } else {%>
<% layout("../layouts/admin/Main") %>
<%}%>
<%~ includeFile("../partials/admin/Breadcrumb", it)%>
<div class="tab-content mx-4 my-4">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<%~ includeFile("../partials/admin/GlobalResponse.eta", it) %>
<div class="card" style='border-bottom:1px solid #ccc;'>
<div class="card-body">
<h4 class="primaryHeading2 text-md-left">
<%= it.heading %>
</h4>
<table class="table table-striped">
<tr>
<th>ID:</th>
<td>
<%= it.detail_fields["id"] %>
</td>
</tr>
<tr>
<th>Name:</th>
<td>
<%= it.detail_fields["name"] %>
</td>
</tr>
<tr>
<th>Actives list:</th>
<td>
<% if(it.detail_fields.active_list !== "N/A") { %>
<% it.detail_fields.active_list.forEach(active => { %>
<%= `${active.id}: ${active.name}` %>
</br>
<% }) %>
<% } else { %>
N/A
<% } %>
</td>
</tr>
<tr>
<th>Ranges responses:</th>
<td>
<% if(it.detail_fields.ranges_response) { %>
<% JSON.parse(it.detail_fields.ranges_response).forEach(range => { %>
<%= `Range: ${Object.keys(range)[0]}` %>
-
<%= `Response: ${range[Object.keys(range)[0]]}` %>
</br>
<% }) %>
<% } else { %>
N/A
<% } %>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>