To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / boards / _form.html.erb @ 1298:4f746d8966dd
History | View | Annotate | Download (374 Bytes)
| 1 |
<%= error_messages_for @board %>
|
|---|---|
| 2 |
|
| 3 |
<div class="box tabular"> |
| 4 |
<p><%= f.text_field :name, :required => true %></p> |
| 5 |
<p><%= f.text_field :description, :required => true, :size => 80 %></p> |
| 6 |
<% if @board.valid_parents.any? %>
|
| 7 |
<p><%= f.select :parent_id, boards_options_for_select(@board.valid_parents), :include_blank => true, :label => :field_board_parent %></p> |
| 8 |
<% end %>
|
| 9 |
</div>
|