<%= title %>

Edit content displayed on Contact Us page

<% if (frontendUrl) { %> View Contact Page <% } %>
<%# ── TAB: Metadata ── %>
<%# ── TAB: Hero ── %>
<%# ── TAB: Info Cards ── %>
Contact Information
Channels
<% (data.infoCards?.contactInfo?.channels || []).forEach(function(ch) { %>
<% }); %>

Support Hours
Hours
<% (data.infoCards?.supportHours?.hours || []).forEach(function(h) { %>
<% }); %>
<%# ── TAB: Form ── %>
<% const fm = data.form || {}; const fld = fm.fields || {}; %>
Fields
Inquiry Type (dropdown)
Inquiry options
<% (fld.inquiryType?.options || []).forEach(function(opt) { %>
<% }); %>
<%# ── TAB: FAQ ── %>
FAQ items
<% (data.faq?.items || []).forEach(function(item) { %>
<% }); %>
<%# ── TAB: CTA ── %>
<%# ── TAB: Submissions ── %>
Recent Submissions
<% if (locals.submissions && submissions.length > 0) { %> <% submissions.forEach(function(s) { %> <% }); %> <% } else { %> <% } %>
DateNameEmailPhoneMessageStatusAction
<%= new Date(s.createdAt).toLocaleDateString() %> <%= new Date(s.createdAt).toLocaleTimeString([], {hour:'2-digit',minute:'2-digit'}) %> <%= s.name %> <%= s.email %> <%= s.phone || '-' %>
<%= s.message %>
<% let cls='bg-secondary'; if(s.status==='pending') cls='bg-warning text-dark'; if(s.status==='read') cls='bg-info text-dark'; if(s.status==='replied') cls='bg-success'; %> <%= s.status %>
No submissions found
Showing last 50 submissions