X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c24c2e481cc6d27e76274ed4e32668a4690a7788..039b3e1c3226689e72ad4c15e80c2f35b91b87f0:/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 6d06eeb87..14480eac8 100644
--- a/app/views/user_blocks/edit.html.erb
+++ b/app/views/user_blocks/edit.html.erb
@@ -1,30 +1,44 @@
<% @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_path(@user_block.user))) %>
-
- - <%= link_to t(".show"), @user_block %>
- - <%= link_to t(".back"), user_blocks_path %>
-
+ <%= t(".heading_html", :name => link_to(@user_block.user.display_name, @user_block.user)) %>
+ <%= render :partial => "navigation" %>
<% end %>
-<%= form_for(@user_block, :html => { :class => "standard-form" }) do |f| %>
- <%= f.error_messages %>
+<%= bootstrap_form_for(@user_block) do |f| %>
+ <%= f.richtext_field :reason, :cols => 80, :rows => 20, :format => @user_block.reason_format %>
+
+ <% 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",
+ options_for_select(UserBlock::PERIODS.collect { |h| [block_duration_in_words(h.hours), h.to_s] },
+ UserBlock::PERIODS.min_by { |h| (params[:user_block_period].to_i - h).abs }),
+ :class => "form-select" %>
+ <% end %>
+
+ <%= f.form_group :needs_view do %>
+ <%= f.check_box :needs_view %>
+ <% end %>
+
+ <%= f.primary %>
+ <% else %>
+
+ <% 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 %>
+ <%= hidden_field_tag "user_block[needs_view]", false %>
-
- <%= f.label :reason, t(".reason", :name => @user_block.user.display_name) %>
- <%= richtext_area :user_block, :reason, :cols => 80, :rows => 20, :format => @user_block.reason_format %>
-
-
- <%= label_tag "user_block_period", t(".period") %>
- <%= select_tag("user_block_period", options_for_select(UserBlock::PERIODS.collect { |h| [block_duration_in_words(h.hours), h.to_s] }, params[:user_block_period])) %>
-
-
- <%= f.check_box :needs_view %>
- <%= f.label :needs_view, t(".needs_view") %>
-
-
- <%= f.submit %>
-
+ <% if @user_block.active? %>
+ <%= f.submit t(".revoke"), :class => "btn btn-danger" %>
+ <% else %>
+ <%= f.primary %>
+ <% end %>
+ <% end %>
<% end %>