##// END OF EJS Templates
Merged r9911 from trunk to 1.4-stable (#11328)...
Merged r9911 from trunk to 1.4-stable (#11328) Fix Japanese mistranslation for 'label_language_based'. Contributed by Go MAEDA. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@9918 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8897:7c568cccafeb
r9735:1b0e717902c0
Show More
_form.html.erb
15 lines | 573 B | text/plain | TextLexer
Jean-Philippe Lang
Adds a helper for displaying validation error messages....
r8897 <%= error_messages_for @document %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Resourcified documents....
r7890 <div class="box tabular">
<p><%= f.select :category_id, DocumentCategory.active.collect {|c| [c.name, c.id]} %></p>
<p><%= f.text_field :title, :required => true, :size => 60 %></p>
<p><%= f.text_area :description, :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
Jean-Philippe Lang
documents views modified...
r58 </div>
Jean-Philippe Lang
Slight views refactoring...
r545 <%= wikitoolbar_for 'document_description' %>
Jean-Philippe Lang
Resourcified documents....
r7890
<% if @document.new_record? %>
<div class="box tabular">
Jean-Philippe Lang
Preserve uploaded files when on documents....
r8824 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form', :locals => {:container => @document} %></p>
Jean-Philippe Lang
Resourcified documents....
r7890 </div>
<% end %>