socialforge/app/views/projects/new.html.erb

13 lines
385 B
Plaintext

<h3><%=l(:label_project_new)%></h3>
<%= labelled_form_for @project do |f| %>
<!--Added by young-->
<div class="box tabular">
<%= render :partial => 'form', :locals => { :f => f } %>
<%= submit_tag l(:button_create) %>
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
<%= javascript_tag "$('#project_name').focus();" %>
<% end %>
</div>
<!--Ended by young-->