eBooru/app/views/bulk_update_requests/show.html.erb
Donovan Daniels 0702b4fd19
[AIBUR] Link to forum post & show votes in show action (#601)
* [AIBUR] Link to forum post & show votes in `show` action

* Use strict locals, they are pretty cool

Also clarify the purpose of the new parameter

* Only show voting box when any votes are present

Looks weird otherwise

* Move the list into the partial

* Remove voting link on show page

* Uniform display on forum/show page

Display the votes inline, like on forum posts

---------

Co-authored-by: Earlopain <14981592+Earlopain@users.noreply.github.com>
2024-02-14 19:17:54 +01:00

29 lines
1.0 KiB
Plaintext

<div id="c-bulk-update-requests">
<div id="a-show">
<h1>Bulk Update Request: <%= @bulk_update_request.title %></h1>
<ul>
<%= render "tag_change_requests/reference", tag_change_request: @bulk_update_request %>
<li><strong>Creator</strong> <%= link_to_user @bulk_update_request.user %></li>
<li><strong>Date</strong> <%= @bulk_update_request.created_at %></li>
<li><strong>Status</strong>: <%= @bulk_update_request.status %></li>
<li><strong title="How many posts will be affected">Estimate</strong>: <%= @bulk_update_request.estimate_update_count %></li>
</ul>
<div style="margin: 1em 0;">
<h2>Script</h2>
<pre><%= format_text script_with_line_breaks(@bulk_update_request, with_decorations: true), allow_color: true %></pre>
<%= render "bur_edit_links", bur: @bulk_update_request %>
</div>
<%= render "tag_change_requests/votes", tag_change_request: @bulk_update_request %>
</div>
</div>
<%= render "secondary_links" %>
<% content_for(:page_title) do %>
Bulk Update Request
<% end %>