##// END OF EJS Templates
Add 'Author' to the available columns for the issue list....
Add 'Author' to the available columns for the issue list. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1110 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r736:827e998afef3
r1096:b124501a4e82
Show More
_modules.rhtml
16 lines | 546 B | text/html+ruby | RhtmlLexer
<% form_for :project, @project,
:url => { :action => 'modules', :id => @project },
:html => {:id => 'modules-form'} do |f| %>
<div class=box>
<strong>Select modules to enable for this project:</strong>
<br />
<% Redmine::AccessControl.available_project_modules.each do |m| %>
<p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %></label></p>
<% end %>
</div>
<p><%= check_all_links 'modules-form' %></p>
<p><%= submit_tag l(:button_save) %></p>
<% end %>