<%=title%>

Please enter a title.
Please enter a subTitle.
Please Enter Description.
<%if(details.image){%>
Image
<% }else {%>
Image
<% }%>
<%if(details.video || details?.video_link){%>
Please enter video link.
<% }else {%>
Please enter video link.
<% }%>
<% if(id){ %>
Comments
<% if (commentList && commentList.length > 0) { %>
    <% commentList.forEach(comment => { %>
  • <%= comment.customer.fullName %>: <%= comment.caption %>
    Posted on <%= new Date(comment.createdAt).toLocaleDateString() %>
    Delete
    <% comment.replies.forEach(reply => { %>
    • <%= reply.customer.fullName %>: <%= reply.caption %>
      Posted on <%= new Date(reply.createdAt).toLocaleDateString() %>
    <% }) %>
  • <% }) %>
<% } else { %>

No comments yet. Be the first to comment!

<% } %>
<% } %>
Published