18 lines
669 B
Plaintext
18 lines
669 B
Plaintext
|
<%= form_for(@organizations, :method => :post,
|
||
|
:name => 'new_form',
|
||
|
:url => {:controller => 'organization',
|
||
|
:action => 'create'}) do |f|%>
|
||
|
<h3>
|
||
|
<%=l(:label_organization_new)%>
|
||
|
</h3>
|
||
|
<div class="box tabular" >
|
||
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
||
|
<span style="padding-left: 60px">
|
||
|
<%= submit_tag l(:button_create), :class => "enterprise"%>
|
||
|
</span>
|
||
|
</div>
|
||
|
<%#= submit_tag l(:button_create_and_continue), :name => 'continue' %>
|
||
|
<%= javascript_tag "$('#project_name').focus();" %>
|
||
|
<% end %>
|
||
|
|
||
|
<% html_title(l(:label_organization_new)) -%>
|