37 lines
1.4 KiB
Text
37 lines
1.4 KiB
Text
<% title "Mod Center" %>
|
|
|
|
<%= javascript_packs_with_chunks_tag "modCenter", defer: true %>
|
|
|
|
<div id="moderation-page" aria-hidden="true"></div>
|
|
|
|
<% if current_user&.trusted %>
|
|
<div class="crayons-layout crayons-layout--2-cols" id="mod-center">
|
|
<%= render "moderations/mod_sidebar_left" %>
|
|
<div class="mod-index-container articles-list crayons-layout__content">
|
|
<div class="mod-index-header">
|
|
<h2 class="tag-view fs-3xl fw-bold lh-base">
|
|
<%= @tag ? "##{@tag.name}" : "All topics" %>
|
|
</h2>
|
|
</div>
|
|
<div class="mod-index-list-header lh-tight">
|
|
<h2 class="fs-xs fw-medium">Post</h2>
|
|
<h2 class="fs-xs fw-medium">Author</h2>
|
|
<h2 class="fs-xs fw-medium">Date</h2>
|
|
</div>
|
|
<main class="mod-index-list" id="mod-index-list" data-articles="<%= @articles %>">
|
|
</main>
|
|
</div>
|
|
<div data-testid="flag-user-modal-container" class="flag-user-modal-container hidden"></div>
|
|
</div>
|
|
<% else %>
|
|
<div class="container" style="margin-top: 90px;">
|
|
<h1 style="text-align: center"><%= community_name %> Mods</h1>
|
|
<div class="body">
|
|
<p>We periodically award some <%= community_name %> members with heightened privileges to help moderate the community.</p>
|
|
<p>Email <%= email_link %> if you'd like to be considered right away.</p>
|
|
<% unless user_signed_in? %>
|
|
<p><em>P.S. You are not currently signed in.</em></p>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|