Add "All Blocks" nav tab to block list/show pages

This commit is contained in:
Anton Khorev 2024-04-03 11:21:32 +03:00
parent 7d7126736e
commit a57472d282
6 changed files with 20 additions and 6 deletions

View file

@ -0,0 +1,7 @@
<ul class="nav nav-tabs">
<li class="nav-item">
<%= link_to t(".all_blocks"),
user_blocks_path,
:class => ["nav-link", { :active => action_name == "index" }] %>
</li>
</ul>

View file

@ -1,6 +1,9 @@
<% @title = t(".title", :name => @user.display_name) %>
<% content_for :heading_class, "pb-0" %>
<% content_for :heading do %>
<h1><%= t(".heading_html", :name => link_to(@user.display_name, @user)) %></h1>
<%= render :partial => "navigation" %>
<% end %>
<% unless @user_blocks.empty? %>

View file

@ -1,6 +1,9 @@
<% @title = t(".title", :name => @user.display_name) %>
<% content_for :heading_class, "pb-0" %>
<% content_for :heading do %>
<h1><%= t(".heading_html", :name => link_to(@user.display_name, @user)) %></h1>
<%= render :partial => "navigation" %>
<% end %>
<% unless @user_blocks.empty? %>

View file

@ -1,6 +1,9 @@
<% @title = t(".title") %>
<% content_for :heading_class, "pb-0" %>
<% content_for :heading do %>
<h1><%= t(".heading") %></h1>
<%= render :partial => "navigation" %>
<% end %>
<% unless @user_blocks.empty? %>

View file

@ -2,15 +2,12 @@
:block_on => @user_block.user.display_name,
:block_by => @user_block.creator.display_name) %>
<% content_for :heading_class, "pb-0" %>
<% content_for :heading do %>
<h1><%= t(".heading_html",
:block_on => link_to(@user_block.user.display_name, @user_block.user),
:block_by => link_to(@user_block.creator.display_name, @user_block.creator)) %></h1>
<nav class='secondary-actions'>
<ul class='clearfix'>
<li><%= link_to t(".back"), user_blocks_path %></li>
</ul>
</nav>
<%= render :partial => "navigation" %>
<% end %>
<dl class="row">

View file

@ -2970,7 +2970,6 @@ en:
revoke: "Revoke!"
confirm: "Are you sure?"
reason: "Reason for block:"
back: "View all blocks"
revoker: "Revoker:"
needs_view: "The user needs to log in before this block will be cleared."
block:
@ -2986,6 +2985,8 @@ en:
revoker_name: "Revoked by"
older: "Older Blocks"
newer: "Newer Blocks"
navigation:
all_blocks: "All Blocks"
user_mutes:
index:
title: "Muted Users"