|
|
|
@ -40,6 +40,8 @@
|
|
|
|
|
<a href="<%= hidden_course_managements_path(:course_id => course.id) %>" class="mr5 fr" data-remote="true" id="hidden_course_<%= course.id %>"><%= course.is_hidden ? "显示" : "隐藏" %></a>
|
|
|
|
|
<input type="checkbox" name="homepage_show" value="<%= course.id %>" <%= course.homepage_show ? "checked" : "" %> class="ml-3 mr5 magic-checkbox" id="join_course_role_<%= course.id %>">
|
|
|
|
|
<label style="top:0px;padding-left: 25px;float:right; margin-right: 10px" for="join_course_role_<%= course.id %>">首页显示</label>
|
|
|
|
|
<input type="checkbox" name="email_notify" value="<%= course.id %>" <%= course.email_notify ? "checked" : "" %> class="ml-3 mr5 magic-checkbox" id="email_notify_<%= course.id %>">
|
|
|
|
|
<label style="top:0px;padding-left: 25px;float:right; margin-right: 10px" for="email_notify_<%= course.id %>">邮件通知</label>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% end %>
|
|
|
|
@ -74,4 +76,13 @@
|
|
|
|
|
dateType: "script"
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
$("input[name='email_notify']").click(function(){
|
|
|
|
|
var course_id = $(this).val();
|
|
|
|
|
$.ajax({
|
|
|
|
|
url:"<%= course_board_email_notify_managements_path %>",
|
|
|
|
|
data: {course_id: course_id},
|
|
|
|
|
type: 'post',
|
|
|
|
|
dateType: "script"
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|