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 @ 912:5e80956cc792
History | View | Annotate | Download (642 Bytes)
| 1 | 0:513646585e45 | Chris | <%= error_messages_for 'document' %>
|
|---|---|---|---|
| 2 | <div class="box"> |
||
| 3 | <!--[form:document]-->
|
||
| 4 | <p><label for="document_category_id"><%=l(:field_category)%></label> |
||
| 5 | 909:cbb26bc654de | Chris | <%= select('document', 'category_id', DocumentCategory.active.collect {|c| [c.name, c.id]}) %></p> |
| 6 | 0:513646585e45 | Chris | |
| 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' %> |