%- include('../partials/admin-head') %>
<%- include('../partials/panel-header', {active: 'comments' }) %>
<% for (var comment of comments) { %>
<%- comment.slug %>
<%=comment.name %>
<%=comment.text %>
<% if (comment.approved != true && config.commentsRequireApproval) { %>
Approve
| <% } %>
Delete
<% } %>