24 lines
718 B
Text
24 lines
718 B
Text
<div class="admin">
|
|
<!--Descriptive page name, messages and instructions-->
|
|
<h2 class="heading"><%= t(".page_heading", user: @user.login) %></h2>
|
|
<!--/descriptions-->
|
|
|
|
<!--subnav-->
|
|
<ul class="navigation actions">
|
|
<li>
|
|
<%= span_if_current(t(".navigation.creations"), creations_admin_user_path(@user)) %>
|
|
</li>
|
|
<li>
|
|
<%= span_if_current(t(".navigation.admin_user"), admin_user_path(@user)) %>
|
|
</li>
|
|
</ul>
|
|
<!--/subnav-->
|
|
|
|
<!--main content-->
|
|
<% if @user.works.empty? && @user.comments.empty? %>
|
|
<p class="notes"><%= t(".no_creations") %></p>
|
|
<% else %>
|
|
<%= render "user_creations_summary", works: @works, comments: @comments %>
|
|
<% end %>
|
|
<!--/content-->
|
|
</div>
|