25 lines
867 B
Plaintext
25 lines
867 B
Plaintext
|
<%= form_for(@organization) do |f|%>
|
|||
|
<h3>
|
|||
|
<%=l(:label_organization_edit)%>
|
|||
|
</h3>
|
|||
|
<div class="box tabular" >
|
|||
|
<%= error_messages_for 'project' %>
|
|||
|
<p>
|
|||
|
<%= render :partial=>"avatar/avatar_form",:locals=> {source:@organization} %>
|
|||
|
</p>
|
|||
|
<p>
|
|||
|
<label for="project_description">
|
|||
|
<%= l(:label_organization_name)%>:
|
|||
|
<span class="required"> </span>
|
|||
|
</label>
|
|||
|
<%= f.text_field :name, :required => true, :size => 60, :style => "width:290px;" %>
|
|||
|
</p>
|
|||
|
<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_edit)) -%>
|