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 / documents / _form.html.erb @ 1531:ae8145b28b2b
History | View | Annotate | Download (573 Bytes)
| 1 |
<%= error_messages_for @document %>
|
|---|---|
| 2 |
|
| 3 |
<div class="box tabular"> |
| 4 |
<p><%= f.select :category_id, DocumentCategory.active.collect {|c| [c.name, c.id]} %></p> |
| 5 |
<p><%= f.text_field :title, :required => true, :size => 60 %></p> |
| 6 |
<p><%= f.text_area :description, :cols => 60, :rows => 15, :class => 'wiki-edit' %></p> |
| 7 |
</div>
|
| 8 |
|
| 9 |
<%= wikitoolbar_for 'document_description' %>
|
| 10 |
|
| 11 |
<% if @document.new_record? %>
|
| 12 |
<div class="box tabular"> |
| 13 |
<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form', :locals => {:container => @document} %></p> |
| 14 |
</div>
|
| 15 |
<% end %>
|