Merge pull request #3207 from evazion/feat-note-links

Fix #3205: Add ability to link to individual notes
This commit is contained in:
Albert Yi
2017-07-07 18:59:39 -07:00
committed by GitHub
6 changed files with 62 additions and 14 deletions

View File

@@ -2,7 +2,7 @@
<div id="a-index">
<h1>Note Changes</h1>
<table width="100%" class="striped">
<table width="100%" class="striped autofit">
<thead>
<tr>
<th></th>
@@ -25,8 +25,11 @@
<tr>
<td></td>
<td><%= link_to note_version.post_id, post_path(note_version.post_id) %></td>
<td><%= link_to "#{note_version.note_id}.#{note_version.version}", note_versions_path(:search => {:note_id => note_version.note_id}) %></td>
<td>
<%= link_to "#{note_version.note_id}.#{note_version.version}", post_path(note_version.post_id, anchor: "note-#{note_version.note_id}") %>
<%= link_to "»", note_versions_path(search: {note_id: note_version.note_id}) %>
</td>
<td class="col-expand">
<%= h(note_version.body) %>
<% unless note_version.is_active? %>
<span class="inactive">(deleted)</span>

View File

@@ -2,10 +2,11 @@
<div id="a-index">
<h1>Notes</h1>
<table width="100%" class="striped">
<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>
@@ -15,9 +16,13 @@
<% @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>
<td class="col-expand">
<%= h(note.body) %>
<% unless note.is_active? %>
<span class="inactive">(deleted)</span>