##// END OF EJS Templates
code cleanup test_with_a_start_date_attribute_* of unit IssuesHelperTest...
code cleanup test_with_a_start_date_attribute_* of unit IssuesHelperTest git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10264 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8897:7c568cccafeb
r10081:e4b7b7cc38e3
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 %>