]> git.openstreetmap.org Git - rails.git/blob - app/views/user_blocks/edit.html.erb
Bootstrap 5: Add form-label class to hand-crafted form labels
[rails.git] / app / views / user_blocks / edit.html.erb
1 <% @title = t ".title", :name => @user_block.user.display_name %>
2 <% content_for :heading do %>
3   <h1><%= t(".heading_html",
4             :name => link_to(@user_block.user.display_name,
5                              user_path(@user_block.user))) %></h1>
6   <nav class='secondary-actions'>
7     <ul class='clearfix'>
8       <li><%= link_to t(".show"), @user_block %></li>
9       <li><%= link_to t(".back"), user_blocks_path %></li>
10     </ul>
11   </nav>
12 <% end %>
13
14 <%= bootstrap_form_for(@user_block) do |f| %>
15   <%= f.richtext_field :reason, :cols => 80, :rows => 20, :format => @user_block.reason_format %>
16
17   <%= f.form_group do %>
18     <%= label_tag "user_block_period", t(".period"), :class => "form-label" %>
19     <%= select_tag("user_block_period",
20                    options_for_select(UserBlock::PERIODS.collect { |h| [block_duration_in_words(h.hours), h.to_s] }, params[:user_block_period]),
21                    :class => "form-select") %>
22   <% end %>
23
24   <%= f.form_group :needs_view do %>
25     <%= f.check_box :needs_view %>
26   <% end %>
27
28   <%= f.primary %>
29 <% end %>