<% form_tag do %>

<%= _('In what area do you want to put your new block?') %>

<%# FIXME hardcoded stuff %> <%= select_tag('box_id', options_for_select(@boxes.select { |item| item.position != 1 }.map {|item| [ _("Area %d") % item.position, item.id]})) %>

<%= _('Select the type of block you want to add to your page.') %>

<% @block_types.each do |item| %>
<%= radio_button_tag('type', item.name) %> <%= item.description %>
<% end %> <% button_bar do %> <%= submit_button(:add, _("Add")) %> <%= lightbox_close_button(_('Close')) %> <% end %> <% end %>