Restructure the Dockerfile and the CSS/JS files so that we only rebuild the CSS and JS when they change, not on every commit. Before it took several minutes to rebuild the Docker image after every commit, even when the JS/CSS files didn't change. This also made pulling images slower. This requires refactoring the CSS and JS to not use embedded Ruby (ERB) templates, since this made the CSS and JS dependent on the Ruby codebase, which is why we had to rebuild the assets after every Ruby change.
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
<% page_title "Moderation Queue" %>
|
|
|
|
<%= content_for :html_header do %>
|
|
<style>
|
|
<% Danbooru.config.modqueue_warning_tags.each do |tag| %>
|
|
div.post a[data-tag-name="<%= tag %>"] {
|
|
background-color: var(--modqueue-tag-warning-color);
|
|
}
|
|
<% end %>
|
|
</style>
|
|
<% end %>
|
|
|
|
<% content_for(:top_content) do %>
|
|
<h1>Moderation Queue</h1>
|
|
|
|
<div id="moderation-guideline" class="fixed-width-container">
|
|
<h2>Deletion Guidelines</h2>
|
|
|
|
<%= render "desc" %>
|
|
|
|
<p>
|
|
<% if params.dig(:search, :hidden) %>
|
|
<%= link_to "View pending posts", modqueue_index_path(search: { tags: params.dig(:search, :tags), hidden: nil }) %>.
|
|
<% else %>
|
|
<%= link_to "View hidden posts", modqueue_index_path(search: { tags: params.dig(:search, :tags), hidden: true, }) %>.
|
|
<% end %>
|
|
</p>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% content_for(:content) do %>
|
|
<h2>Posts</h2>
|
|
|
|
<% @posts.each do |post| %>
|
|
<%= render "post", post: post %>
|
|
<% end %>
|
|
|
|
<%= numbered_paginator(@posts) %>
|
|
<% end %>
|
|
|
|
<%= render "modqueue/sidebar" %>
|
|
<%= render "post_disapprovals/detailed_rejection_dialog" %>
|
|
<%= render "modqueue/secondary_links" %>
|