2006-06-28 18:11:03 +00:00
|
|
|
<%= error_messages_for 'document' %>
|
2006-09-02 13:33:23 +00:00
|
|
|
<div class="box">
|
2006-06-28 18:11:03 +00:00
|
|
|
<!--[form:document]-->
|
2007-03-12 17:59:02 +00:00
|
|
|
<p><label for="document_category_id"><%=l(:field_category)%></label>
|
2009-05-30 23:30:36 +00:00
|
|
|
<%= select('document', 'category_id', DocumentCategory.all.collect {|c| [c.name, c.id]}) %></p>
|
2007-03-12 17:59:02 +00:00
|
|
|
|
2006-09-02 13:33:23 +00:00
|
|
|
<p><label for="document_title"><%=l(:field_title)%> <span class="required">*</span></label>
|
2006-06-28 18:11:03 +00:00
|
|
|
<%= text_field 'document', 'title', :size => 60 %></p>
|
|
|
|
|
2006-09-02 13:33:23 +00:00
|
|
|
<p><label for="document_description"><%=l(:field_description)%></label>
|
2007-03-11 14:22:53 +00:00
|
|
|
<%= text_area 'document', 'description', :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
|
2006-06-28 18:11:03 +00:00
|
|
|
<!--[eoform:document]-->
|
2006-11-30 22:00:35 +00:00
|
|
|
</div>
|
|
|
|
|
2007-05-27 12:38:29 +00:00
|
|
|
<%= wikitoolbar_for 'document_description' %>
|