]> git.openstreetmap.org Git - rails.git/blob - app/views/users/comments/index.html.erb
Create changeset_comments resources for users
[rails.git] / app / views / users / comments / index.html.erb
1 <% content_for :heading_class, "pb-0" %>
2
3 <% content_for :heading do %>
4   <h1><%= t ".heading_html", :user => link_to(@user.display_name, @user) %></h1>
5   <ul class="nav nav-tabs">
6     <li class="nav-item">
7       <%= link_to t(".diary_entries"), user_diary_comments_path, :class => ["nav-link", { "active" => controller_name == "diary_comments" }] %>
8     </li>
9     <li class="nav-item">
10       <%= link_to t(".changesets"), user_changeset_comments_path, :class => ["nav-link", { "active" => controller_name == "changeset_comments" }] %>
11     </li>
12   </ul>
13 <% end %>
14
15 <% if @comments.empty? %>
16   <h4><%= t ".no_comments" %></h4>
17 <% else %>
18   <%= render :partial => "page" %>
19 <% end -%>