You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
503 B
11 lines
503 B
<%if @project%>
|
|
$('#pro_st_tbc_03').html('<%= escape_javascript(render :partial => 'projects/settings/new_members') %>');
|
|
$("#project_members_number").html("<%= @project.members.count %>");
|
|
<%elsif @course%>
|
|
<% if params[:type] == '1' %>
|
|
notice_box_redirect('<%= teachers_course_path(@course) %>',"删除成功");
|
|
<% else %>
|
|
notice_box("删除成功");
|
|
$.get('/courses/<%= @course.id %>/students?group_id=<%= params[:group] %>');
|
|
<% end %>
|
|
<%end%> |