10 lines
460 B
Plaintext
10 lines
460 B
Plaintext
<%= labelled_form_for @course do |f| %>
|
|
<h3><%=l(:label_course_new)%></h3>
|
|
<div class="box tabular">
|
|
<%= render :partial => 'course_form', :locals => { :f => f } %>
|
|
<span style="padding-left: 60px"><%= submit_tag l(:button_create), :class => "enterprise"%></span>
|
|
<!-- <%= submit_tag l(:button_create_and_continue), :name => 'course_continue' %> -->
|
|
<%= javascript_tag "$('#course_name').focus();" %>
|
|
</div>
|
|
<% end %>
|