]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/diary_comments/index.html.erb
Merge remote-tracking branch 'upstream/pull/5140'
[rails.git] / app / views / diary_comments / index.html.erb
index 0dd03d9d095afa620e839d68b84f76aa138cc5c4..e68b3fb6b9ba58773080a06fbb3359441323eaad 100644 (file)
@@ -5,30 +5,6 @@
 
 <% if @comments.empty? %>
   <h4><%= t ".no_comments" %></h4>
-
 <% else %>
-  <table class="table table-striped" width="100%">
-    <thead>
-      <tr>
-        <th width="25%"><%= t ".post" %></th>
-        <th width="25%"><%= t ".when" %></th>
-        <th width="50%"><%= t ".comment" %></th>
-      </tr>
-    </thead>
-    <% @comments.each do |comment| -%>
-    <tr>
-      <td width="25%" class="<%= "text-body-secondary" unless comment.visible? %>"><%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %></td>
-      <td width="25%" class="<%= "text-body-secondary" unless comment.visible? %>">
-        <%= friendly_date_ago(comment.created_at) %>
-      </td>
-      <td width="50%" class="richtext text-break<%= " text-body-secondary" unless comment.visible? %>"><%= comment.body.to_html %></td>
-    </tr>
-    <% end -%>
-  </table>
-
-  <%= render "shared/pagination",
-             :newer_key => "diary_comments.index.newer_comments",
-             :older_key => "diary_comments.index.older_comments",
-             :newer_id => @newer_comments_id,
-             :older_id => @older_comments_id %>
+  <%= render :partial => "page" %>
 <% end -%>