Refactor user_blocks revoke form to use bootstrap
This commit is contained in:
parent
b6277bda20
commit
fd6273cfb8
1 changed files with 16 additions and 16 deletions
|
@ -11,19 +11,19 @@
|
|||
<% end %>
|
||||
|
||||
<% 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)) %>
|
||||
</b></p>
|
||||
</p>
|
||||
|
||||
<%= form_for :revoke, :url => { :action => "revoke" }, :html => { :class => "standard-form" } do |f| %>
|
||||
<%= f.error_messages %>
|
||||
<p>
|
||||
<%= check_box_tag "confirm", "yes" %>
|
||||
<%= label_tag "confirm", t(".confirm") %>
|
||||
</p>
|
||||
<p>
|
||||
<%= submit_tag t(".revoke") %>
|
||||
</p>
|
||||
<%= bootstrap_form_for :revoke, :url => { :action => "revoke" } do |f| %>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<%= check_box_tag "confirm", "yes", false, { :class => "form-check-input" } %>
|
||||
<%= label_tag "confirm", t(".confirm"), { :class => "form-check-label" } %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<%= f.primary t(".revoke") %>
|
||||
<% end %>
|
||||
|
||||
<% else %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue