To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / documents / _form.rhtml @ 442:753f1380d6bc

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' %>