X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/afffd3bf4b80cd5f7d2674f513ed8f0b3dc02601..11a7bf7e0ecaecd3536a666ce3e798d349574903:/app/views/user_blocks/edit.html.erb diff --git a/app/views/user_blocks/edit.html.erb b/app/views/user_blocks/edit.html.erb index 6e030051d..aaa2fcaa4 100644 --- a/app/views/user_blocks/edit.html.erb +++ b/app/views/user_blocks/edit.html.erb @@ -1,18 +1,15 @@ <% @title = t ".title", :name => @user_block.user.display_name %> + +<% content_for :heading_class, "pb-0" %> <% content_for :heading do %>

<%= t(".heading_html", :name => link_to(@user_block.user.display_name, @user_block.user)) %>

- + <%= render :partial => "navigation" %> <% end %> <%= bootstrap_form_for(@user_block) do |f| %> <%= f.richtext_field :reason, :cols => 80, :rows => 20, :format => @user_block.reason_format %> - <% if @user_block.active? %> + <% if @user_block.active? && @user_block.creator == current_user %> <%= f.form_group do %> <%= label_tag "user_block_period", t(".period"), :class => "form-label" %> <%= select_tag "user_block_period", @@ -26,11 +23,15 @@ <% end %> <% else %>
- <%= t "user_blocks.update.inactive_block_cannot_be_reactivated" %> + <% if @user_block.active? %> + <%= t "user_blocks.update.only_creator_can_edit_without_revoking" %> + <% else %> + <%= t "user_blocks.update.inactive_block_cannot_be_reactivated" %> + <% end %>
<%= hidden_field_tag "user_block_period", 0 %> - <%= f.hidden_field :needs_view %> + <%= hidden_field_tag "user_block[needs_view]", false %> <% end %> <%= f.primary %>