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.rhtml @ 441:cbce1fd3b1b7
History | View | Annotate | Download (639 Bytes)
| 1 |
<%= error_messages_for 'document' %>
|
|---|---|
| 2 |
<div class="box"> |
| 3 |
<!--[form:document]-->
|
| 4 |
<p><label for="document_category_id"><%=l(:field_category)%></label> |
| 5 |
<%= select('document', 'category_id', DocumentCategory.all.collect {|c| [c.name, c.id]}) %></p> |
| 6 |
|
| 7 |
<p><label for="document_title"><%=l(:field_title)%> <span class="required">*</span></label> |
| 8 |
<%= text_field 'document', 'title', :size => 60 %></p> |
| 9 |
|
| 10 |
<p><label for="document_description"><%=l(:field_description)%></label> |
| 11 |
<%= text_area 'document', 'description', :cols => 60, :rows => 15, :class => 'wiki-edit' %></p> |
| 12 |
<!--[eoform:document]-->
|
| 13 |
</div>
|
| 14 |
|
| 15 |
<%= wikitoolbar_for 'document_description' %>
|