##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13622:ae4eb4788132
r14954:42b5c332b2c2
Show More
_form.html.erb
19 lines | 697 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
Adds custom fields to documents (#7249)....
r13622
<% @document.custom_field_values.each do |value| %>
<p><%= custom_field_tag_with_label :document, value %></p>
<% end %>
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 %>