Refactor user_blocks revoke form to use bootstrap

This commit is contained in:
Andy Allan 2021-02-03 09:47:52 +00:00
parent b6277bda20
commit fd6273cfb8

View file

@ -11,23 +11,23 @@
<% end %> <% end %>
<% if @user_block.ends_at > Time.now %> <% if @user_block.ends_at > Time.now %>
<p><b> <p>
<%= t(".time_future", :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %> <%= t(".time_future", :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %>
</b></p> </p>
<%= form_for :revoke, :url => { :action => "revoke" }, :html => { :class => "standard-form" } do |f| %> <%= bootstrap_form_for :revoke, :url => { :action => "revoke" } do |f| %>
<%= f.error_messages %> <div class="form-group">
<p> <div class="form-check">
<%= check_box_tag "confirm", "yes" %> <%= check_box_tag "confirm", "yes", false, { :class => "form-check-input" } %>
<%= label_tag "confirm", t(".confirm") %> <%= label_tag "confirm", t(".confirm"), { :class => "form-check-label" } %>
</p> </div>
<p> </div>
<%= submit_tag t(".revoke") %>
</p> <%= f.primary t(".revoke") %>
<% end %> <% end %>
<% else %> <% else %>
<p> <p>
<%= t(".past", :time => time_ago_in_words(@user_block.ends_at, :scope => :'datetime.distance_in_words_ago')) %> <%= t(".past", :time => time_ago_in_words(@user_block.ends_at, :scope => :'datetime.distance_in_words_ago')) %>
</p> </p>
<% end %> <% end %>