Files
danbooru/app/views/notes/index.html.erb
BrokenEagle 5cdd8d8f67 Standardize position of page title and secondary links
- Removed path specification for secondary links where unneeded
2017-12-28 10:20:27 -08:00

45 lines
1.2 KiB
Plaintext

<div id="c-notes">
<div id="a-index">
<h1>Notes</h1>
<table width="100%" class="striped autofit">
<thead>
<tr>
<th>Post</th>
<th>Note</th>
<th>Created by</th>
<th>Created at</th>
<th>Body</th>
</tr>
</thead>
<tbody>
<% @notes.each do |note| %>
<tr>
<td><%= link_to note.post_id, post_path(note.post_id) %></td>
<td>
<%= link_to "#{note.id}.#{note.version}", post_path(note.post_id, anchor: "note-#{note.id}") %>
<%= link_to "»", note_versions_path(search: {note_id: note.id}) %>
</td>
<td><%= link_to_user note.creator %></td>
<td><%= compact_time(note.created_at) %></td>
<td class="col-expand">
<%= h(note.body) %>
<% unless note.is_active? %>
<span class="inactive">(deleted)</span>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= numbered_paginator(@notes) %>
</div>
</div>
<%= render "secondary_links" %>
<% content_for(:page_title) do %>
Notes - <%= Danbooru.config.app_name %>
<% end %>