1 <% content_for :heading do %>
2 <h1><%= t ".heading", :user => @user.display_name %></h1>
3 <p><%= t ".subheading_html",
4 :user => link_to(@user.display_name, user_path(@user)),
5 :submitted => tag.span(t(".subheading_submitted"), :class => "px-2 py-1 bg-primary bg-opacity-25"),
6 :commented => tag.span(t(".subheading_commented"), :class => "px-2 py-1 bg-white") %></p>
10 <h4><%= t ".no_notes" %></h4>
13 <%= render :partial => "notes_paging_nav" %>
15 <table class="table table-sm note_list">
19 <th><%= t ".id" %></th>
20 <th><%= t ".creator" %></th>
21 <th><%= t ".description" %></th>
22 <th><%= t ".created_at" %></th>
23 <th><%= t ".last_changed" %></th>
26 <% @notes.each do |note| -%>
27 <tr<% if note.author == @user %> class="table-primary"<% end %>>
30 <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %>
32 <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %>
35 <td><%= link_to note.id, note %></td>
36 <td><%= note_author(note.author) %></td>
37 <td><%= note.comments.first.body.to_html %></td>
38 <td><%= friendly_date_ago(note.created_at) %></td>
39 <td><%= friendly_date_ago(note.updated_at) %></td>
44 <%= render :partial => "notes_paging_nav" %>