Files
danbooru/app/views/user_name_change_requests/show.html.erb
evazion 6a984de3d5 views: refactor page titles.
Refactor `page_title` helper to automatically include site name.
2020-01-25 01:52:18 -06:00

31 lines
771 B
Plaintext

<div id="c-user-name-change-requests">
<div id="a-show">
<h1>Name Change Request</h1>
<table class="aligned-vertical">
<tbody>
<tr>
<th>Date</th>
<td>
<%= compact_time @change_request.created_at %>
<%= render "application/update_notice", record: @change_request %>
</td>
</tr>
<tr>
<th>User</th>
<td><%= link_to_user @change_request.user %></td>
</tr>
<tr>
<th>Request</th>
<td>
<strong><%= @change_request.original_name %></strong> ->
<strong><%= @change_request.desired_name %></strong>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<%= render "secondary_links" %>