##// END OF EJS Templates
Override @#url_for@ in AM to force generation of absolute links (#10251)....
Override @#url_for@ in AM to force generation of absolute links (#10251). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9022 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8021:9636882c1e89
r8902:7056649a4be9
Show More
new.html.erb
8 lines | 310 B | text/plain | TextLexer
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
Use #labelled_form_for instead of #labelled_tabular_form_for....
r8021 <% labelled_form_for @project do |f| %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <%= render :partial => 'form', :locals => { :f => f } %>
Jean-Philippe Lang
Adds a 'Create and continue' button on project form....
r6183 <%= submit_tag l(:button_create) %>
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
Jean-Philippe Lang
Automatically focus several form fields....
r2293 <%= javascript_tag "Form.Element.focus('project_name');" %>
Jean-Philippe Lang
Added project module concept....
r714 <% end %>