]> git.openstreetmap.org Git - rails.git/blob - app/views/user_blocks/edit.html.erb
Refactor user_blocks form to use bootstrap
[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   <ul class='secondary-actions clearfix'>
7     <li><%= link_to t(".show"), @user_block %></li>
8     <li><%= link_to t(".back"), user_blocks_path %></li>
9   </ul>
10 <% end %>
11
12 <%= bootstrap_form_for(@user_block) do |f| %>
13   <%= f.richtext_field :reason, :cols => 80, :rows => 20, :format => @user_block.reason_format %>
14
15   <%= f.form_group do %>
16     <%= label_tag "user_block_period", t(".period") %><br />
17     <%= 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])) %>
18   <% end %>
19
20   <%= f.form_group :needs_view do %>
21     <%= f.check_box :needs_view %>
22   <% end %>
23
24   <%= f.primary %>
25 <% end %>