##// END OF EJS Templates
Fixed: improper 0x5c char handling in PDF output (Go Maeda)....
Fixed: improper 0x5c char handling in PDF output (Go Maeda). git-svn-id: http://redmine.rubyforge.org/svn/trunk@813 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r714:21c97c6a1376
r802:bb724e75c0a9
Show More
add.rhtml
15 lines | 480 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_project_new)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <% labelled_tabular_form_for :project, @project, :url => { :action => "add" } do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>
Jean-Philippe Lang
Added project module concept....
r714
<div class="box">
<p><label><%= l(:label_module_plural) %></label>
<% Redmine::AccessControl.available_project_modules.each do |m| %>
<%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %>
<% end %></p>
</div>
Jean-Philippe Lang
tables and forms redesign,...
r19 <%= submit_tag l(:button_save) %>
Jean-Philippe Lang
Added project module concept....
r714 <% end %>