]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/user_blocks/revoke_all.html.erb
Stop login/signup tab bar getting reversed with RTL languages
[rails.git] / app / views / user_blocks / revoke_all.html.erb
index 982792dddc6aa506a12b1b3a23097ee6bcbf8fc0..f9a17d3e627c2670e76c3d7efc09b3f29b069795 100644 (file)
@@ -1,8 +1,24 @@
-<% @title = t ".title",
-              :block_on => @user.display_name %>
+<% @title = t ".title", :block_on => @user.display_name %>
 
 <% content_for :heading do %>
-  <h1><%= t ".heading_html",
-            :block_on => link_to(@user.display_name,
-                                 user_path(@user)) %></h1>
+  <h1><%= t ".heading_html", :block_on => link_to(@user.display_name, @user) %></h1>
+<% end %>
+
+<% unless @user.blocks.active.empty? %>
+
+  <%= bootstrap_form_for :revoke_all, :url => { :action => "revoke_all" } do |f| %>
+    <div class="mb-3">
+      <div class="form-check">
+        <%= check_box_tag "confirm", "yes", false, { :class => "form-check-input" } %>
+        <%= label_tag "confirm", t(".confirm",
+                                   :active_blocks => t(".active_blocks",
+                                                       :count => @user.blocks.active.count)), { :class => "form-check-label" } %>
+      </div>
+    </div>
+
+    <%= f.submit t(".revoke"), :class => "btn btn-danger" %>
+  <% end %>
+
+<% else %>
+<p><%= t ".empty", :name => @user.display_name %></p>
 <% end %>