##// END OF EJS Templates
Added custom fields marked as "For all projects" to the csv export of the cross project issue list....
Added custom fields marked as "For all projects" to the csv export of the cross project issue list. git-svn-id: http://redmine.rubyforge.org/svn/trunk@933 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r913:29b3614bcb75
r920:c383486d711d
Show More
_form.rhtml
21 lines | 649 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Per project forums added....
r526 <%= error_messages_for 'message' %>
<div class="box">
<!--[form:message]-->
<p><label><%= l(:field_subject) %></label><br />
Jean-Philippe Lang
Forums enhancements:...
r913 <%= f.text_field :subject, :required => true, :size => 120 %>
<% if User.current.allowed_to?(:edit_messages, @project) %>
<label><%= f.check_box :sticky %> Sticky</label>
<label><%= f.check_box :locked %> Locked</label>
<% end %>
</p>
Jean-Philippe Lang
Per project forums added....
r526
Jean-Philippe Lang
Forums: attachments can now be added to replies....
r910 <p><%= f.text_area :content, :required => true, :cols => 80, :rows => 15, :class => 'wiki-edit', :id => 'message_content' %></p>
Jean-Philippe Lang
Per project forums added....
r526 <%= wikitoolbar_for 'message_content' %>
<!--[eoform:message]-->
<span class="tabular">
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538 <%= render :partial => 'attachments/form' %>
Jean-Philippe Lang
Forums: attachments can now be added to replies....
r910 </span>
Jean-Philippe Lang
Per project forums added....
r526 </div>