##// END OF EJS Templates
Escape titles in activity view....
Escape titles in activity view. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1145 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1129:0b6a010a12b9
r1131:71d089c83329
Show More
_modules.rhtml
16 lines | 542 B | text/html+ruby | RhtmlLexer
<% form_for :project, @project,
:url => { :action => 'modules', :id => @project },
:html => {:id => 'modules-form'} do |f| %>
<div class=box>
<strong><%= l(:text_select_project_modules) %></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 %>