Files
danbooru/app/views/bulk_update_requests/show.html.erb

27 lines
1.0 KiB
Plaintext

<div id="c-bulk-update-requests">
<div id="a-show">
<h1>Bulk Update Request</h1>
<ul>
<% if @bulk_update_request.forum_post.present? %>
<li><strong>Reference</strong>: <%= link_to "Forum ##{@bulk_update_request.forum_post_id}", @bulk_update_request.forum_post %></li>
<% elsif @bulk_update_request.forum_topic.present? %>
<li><strong>Reference</strong>: <%= link_to "Topic ##{@bulk_update_request.forum_topic_id}", @bulk_update_request.forum_topic %></li>
<% end %>
<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>
</ul>
<div style="margin: 1em 0;">
<div class="prose">
<%= format_text @bulk_update_request.processor.to_dtext %>
</div>
<%= render "bur_edit_links", bur: @bulk_update_request %>
</div>
</div>
</div>
<%= render "secondary_links" %>