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

20 lines
866 B
Plaintext
Raw Normal View History

2013-08-01 10:33:49 +08:00
<%= labelled_form_for @project do |f| %>
<!--Added by young-->
2013-08-30 09:34:21 +08:00
<% if @course_tag == '1' %>
<h3><%=l(:label_course_new)%></h3>
<div class="box tabular">
<%= render :partial => 'course_form', :locals => { :f => f } %>
2013-11-08 15:49:08 +08:00
<span style="padding-left: 60px"><%= submit_tag l(:button_create), :class => "enterprise"%></span>
<!-- <%= submit_tag l(:button_create_and_continue), :name => 'course_continue' %> -->
2013-08-30 09:34:21 +08:00
<% else %>
<h3><%=l(:label_project_new)%></h3>
<div class="box tabular" >
2013-08-30 09:34:21 +08:00
<%= render :partial => 'form', :locals => { :f => f } %>
2013-11-08 15:49:08 +08:00
<span style="padding-left: 60px"><%= submit_tag l(:button_create), :class => "enterprise"%></span>
<!-- <%= submit_tag l(:button_create_and_continue), :name => 'continue' %> -->
2013-08-30 09:34:21 +08:00
<% end %>
<%= javascript_tag "$('#project_name').focus();" %>
</div>
<% end %>
<!--Ended by young-->