2015-03-24 16:56:39 +08:00
|
|
|
|
<%= stylesheet_link_tag 'polls', :media => 'all' %>
|
2015-01-14 10:05:05 +08:00
|
|
|
|
|
2015-03-24 16:56:39 +08:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
//编辑问卷描述之后
|
2015-07-28 11:20:21 +08:00
|
|
|
|
var popWindow ; //弹出框的引用
|
2015-03-24 16:56:39 +08:00
|
|
|
|
function edit_head(){
|
|
|
|
|
$("#polls_description").val($("#polls_description_div").html());
|
|
|
|
|
}
|
2015-07-28 11:20:21 +08:00
|
|
|
|
$(function(){
|
|
|
|
|
$(document).bind('click',function(e){
|
|
|
|
|
if(popWindow && e.target.nodeName != 'A' && !popWindow.is(e.target) && popWindow.has(e.target).length === 0){ // Mark 1
|
|
|
|
|
popWindow.css('display', 'none');
|
|
|
|
|
}
|
|
|
|
|
//$("#div_"+quest_type+"_"+quest_id).css('display', 'none');
|
|
|
|
|
});
|
|
|
|
|
})
|
2015-03-06 14:56:27 +08:00
|
|
|
|
|
2015-07-28 10:27:45 +08:00
|
|
|
|
function chooseQuestionType(quest_type,quest_id){
|
2015-07-28 11:20:21 +08:00
|
|
|
|
popWindow = $("#div_"+quest_type+"_"+quest_id);
|
|
|
|
|
$("#div_"+quest_type+"_"+quest_id).click(function(e){
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
});
|
2015-07-28 10:27:45 +08:00
|
|
|
|
$("#div_"+quest_type+"_"+quest_id).css("position", "absolute");
|
|
|
|
|
|
|
|
|
|
$("#div_"+quest_type+"_"+quest_id).css("top", $("#add_"+quest_type+"_"+quest_id).offset().top+30);
|
|
|
|
|
|
|
|
|
|
$("#div_"+quest_type+"_"+quest_id).css("left", $("#add_"+quest_type+"_"+quest_id).offset().left-10);
|
|
|
|
|
if( $("#div_"+quest_type+"_"+quest_id).css('display') == 'block') {
|
|
|
|
|
$("#div_"+quest_type+"_"+quest_id).css('display', 'none');
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
$("#div_"+quest_type+"_"+quest_id).css('display', 'block');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function add_MC(){
|
2015-03-24 16:56:39 +08:00
|
|
|
|
$("#new_poll_question").html("<%= escape_javascript(render :partial => 'new_MC') %>");
|
|
|
|
|
$("#poll_questions_title").focus();
|
2015-07-28 10:27:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function insert_MC(quest_type,quest_num,quest_id){
|
|
|
|
|
$("#insert_new_poll_question_"+quest_type+"_"+quest_id).html(
|
|
|
|
|
'<%= form_for PollQuestion.new,:url =>create_poll_question_poll_path(@poll.id),:remote => true do |f|%>'+
|
|
|
|
|
' <div class="ur_editor radio"> '+
|
|
|
|
|
'<div class="ur_editor_title"> '+
|
|
|
|
|
'<label>问题: </label>'+
|
|
|
|
|
'<input type="hidden" name="quest_id" value="'+quest_id+'"/>'+
|
|
|
|
|
'<input type="hidden" name="quest_num" value="'+quest_num+'"/>'+
|
|
|
|
|
'<input type="hidden" name="question_type" value="1"/>'+
|
|
|
|
|
'<input maxlength="250" class="ur_question_title" type="text" name="poll_questions_title" id="poll_questions_title" placeholder="请输入单选题标题"/>'+
|
|
|
|
|
'<input type="checkbox" name="is_necessary" value="true" checked/>'+
|
|
|
|
|
'<label>必答</label>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="ur_editor_content">'+
|
|
|
|
|
'<ul>'+
|
|
|
|
|
'<li class="ur_item">'+
|
|
|
|
|
'<label>选项<span class="ur_index"></span>: </label>'+
|
|
|
|
|
'<input maxlength="200" type="text" name="question_answer[0]" placeholder="新建选项"/>'+
|
|
|
|
|
'<a class="icon_add" title="向下插入选项" onclick="add_single_answer($(this));"></a>'+
|
|
|
|
|
'<a class="icon_remove" title="删除" onclick="remove_single_answer($(this))"></a>'+
|
|
|
|
|
'</li>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'<li class="ur_item">'+
|
|
|
|
|
'<label>选项<span class="ur_index"></span>: </label>'+
|
|
|
|
|
'<input maxlength="200" type="text" name="question_answer[1]" placeholder="新建选项"/>'+
|
|
|
|
|
'<a class="icon_add" title="向下插入选项" onclick="add_single_answer($(this));"></a>'+
|
|
|
|
|
'<a class="icon_remove" title="删除" onclick="remove_single_answer($(this))"></a>'+
|
|
|
|
|
'</li>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'<li class="ur_item">'+
|
|
|
|
|
'<label>选项<span class="ur_index"></span>: </label>'+
|
|
|
|
|
'<input maxlength="200" type="text" name="question_answer[2]" placeholder="新建选项"/>'+
|
|
|
|
|
'<a class="icon_add" title="向下插入选项" onclick="add_single_answer($(this));"></a>'+
|
|
|
|
|
'<a class="icon_remove" title="删除" onclick="remove_single_answer($(this))"></a>'+
|
|
|
|
|
'</li>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'</ul>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="ur_editor_footer">'+
|
|
|
|
|
'<a class="btn btn_dark btn_submit c_white" data-button="ok" onclick="add_poll_question($(this));">'+
|
|
|
|
|
'<%= l(:label_button_ok)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'<a class="btn btn_light btn_cancel" data-button="cancel" onclick="$(this).parent().parent().parent().remove();">'+
|
|
|
|
|
'<%= l(:button_cancel)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<% end%>'
|
|
|
|
|
);
|
|
|
|
|
$("#poll_questions_title").focus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function add_MCQ(){
|
2015-03-24 16:56:39 +08:00
|
|
|
|
$("#new_poll_question").html("<%= escape_javascript(render :partial => 'new_MCQ') %>");
|
|
|
|
|
$("#poll_questions_title").focus();
|
2015-07-28 10:27:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function insert_MCQ(quest_type,quest_num,quest_id){
|
|
|
|
|
$("#insert_new_poll_question_"+quest_type+"_"+quest_id).html(
|
|
|
|
|
'<%= form_for PollQuestion.new,:url =>create_poll_question_poll_path(@poll.id),:remote => true do |f|%>'+
|
|
|
|
|
'<div class="ur_editor checkbox">'+
|
|
|
|
|
'<div class="ur_editor_title">'+
|
|
|
|
|
'<label>问题: </label>'+
|
|
|
|
|
'<input type="hidden" name="quest_id" value="'+quest_id+'"/>'+
|
|
|
|
|
'<input type="hidden" name="quest_num" value="'+quest_num+'"/>'+
|
|
|
|
|
'<input type="hidden" name="question_type" value="2"/>'+
|
|
|
|
|
'<input maxlength="250" class="ur_question_title" type="text" name="poll_questions_title" id="poll_questions_title" placeholder="请输入多选题标题"/>'+
|
|
|
|
|
'<input type="checkbox" name="is_necessary" value="true" checked/>'+
|
|
|
|
|
'<label>必答</label>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="ur_editor_content">'+
|
|
|
|
|
'<ul>'+
|
|
|
|
|
'<li class="ur_item">'+
|
|
|
|
|
'<label>选项<span class="ur_index"></span>: </label>'+
|
|
|
|
|
'<input maxlength="200" type="text" name="question_answer[0]" placeholder="新建选项"/>'+
|
|
|
|
|
'<a class="icon_add" title="向下插入选项" onclick="add_single_answer($(this));"></a>'+
|
|
|
|
|
'<a class="icon_remove" title="删除"" onclick="remove_single_answer($(this))"></a>'+
|
|
|
|
|
'</li>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'<li class="ur_item">'+
|
|
|
|
|
'<label>选项<span class="ur_index"></span>: </label>'+
|
|
|
|
|
'<input maxlength="200" type="text" name="question_answer[1]" placeholder="新建选项"/>'+
|
|
|
|
|
'<a class="icon_add" title="向下插入选项" onclick="add_single_answer($(this));"></a>'+
|
|
|
|
|
'<a class="icon_remove" title="删除" onclick="remove_single_answer($(this))"></a>'+
|
|
|
|
|
'</li>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'<li class="ur_item">'+
|
|
|
|
|
'<label>选项<span class="ur_index"></span>: </label>'+
|
|
|
|
|
'<input maxlength="200" type="text" name="question_answer[2]" placeholder="新建选项"/>'+
|
|
|
|
|
'<a class="icon_add" title="向下插入选项" onclick="add_single_answer($(this));"></a>'+
|
|
|
|
|
'<a class="icon_remove" title="删除" onclick="remove_single_answer($(this))"></a>'+
|
|
|
|
|
'</li>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'</ul>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="ur_editor_footer">'+
|
|
|
|
|
'<a class="btn btn_dark btn_submit c_white" data-button="ok" onclick="add_poll_question($(this));">'+
|
|
|
|
|
'<%= l(:label_button_ok)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'<a class="btn btn_light btn_cancel" data-button="cancel" onclick="$(this).parent().parent().parent().remove();">'+
|
|
|
|
|
'<%= l(:button_cancel)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<% end%>'
|
|
|
|
|
);
|
|
|
|
|
$("#poll_questions_title").focus();
|
2015-03-24 16:56:39 +08:00
|
|
|
|
}
|
2015-07-28 10:27:45 +08:00
|
|
|
|
|
2015-03-24 16:56:39 +08:00
|
|
|
|
function add_single(){
|
|
|
|
|
$("#new_poll_question").html("<%= escape_javascript(render :partial => 'new_single') %>");
|
|
|
|
|
$("#poll_questions_title").focus();
|
|
|
|
|
}
|
2015-07-28 10:27:45 +08:00
|
|
|
|
|
|
|
|
|
function insert_SINGLE(quest_type,quest_num,quest_id){
|
|
|
|
|
$("#insert_new_poll_question_"+quest_type+"_"+quest_id).html(
|
|
|
|
|
'<%= form_for PollQuestion.new,:url =>create_poll_question_poll_path(@poll.id),:remote => true do |f|%>'+
|
|
|
|
|
'<div class="ur_editor text ">'+
|
|
|
|
|
'<div class="ur_editor_title">'+
|
|
|
|
|
'<label for="ur_question_title">问题: </label>'+
|
|
|
|
|
'<input type="hidden" name="quest_id" value="'+quest_id+'"/>'+
|
|
|
|
|
'<input type="hidden" name="quest_num" value="'+quest_num+'"/>'+
|
|
|
|
|
'<input type="hidden" name="question_type" value="3"/>'+
|
|
|
|
|
'<input maxlength="250" id="poll_questions_title" class="ur_question_title" contenteditable="true" type="text" name="poll_questions_title" placeholder="请输入单行主观标题"/>'+
|
|
|
|
|
'<input type="checkbox" name="is_necessary" value="true" checked/>'+
|
|
|
|
|
'<label for="ur_question_require">必答</label>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="ur_editor_footer">'+
|
|
|
|
|
'<a class="btn_submit c_white" data-button="ok" onclick="add_poll_question($(this));">'+
|
|
|
|
|
'<%= l(:label_button_ok)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'<a class="btn_cancel" data-button="cancel" onclick="$(this).parent().parent().parent().remove();">'+
|
|
|
|
|
'<%= l(:button_cancel)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<% end%>'
|
|
|
|
|
);
|
|
|
|
|
$("#poll_questions_title").focus();
|
|
|
|
|
}
|
2015-03-24 16:56:39 +08:00
|
|
|
|
function add_mulit(){
|
|
|
|
|
$("#new_poll_question").html("<%= escape_javascript(render :partial => 'new_mulit') %>");
|
|
|
|
|
$("#poll_questions_title").focus();
|
|
|
|
|
}
|
2015-01-29 16:53:11 +08:00
|
|
|
|
|
2015-07-28 10:27:45 +08:00
|
|
|
|
function insert_MULIT(quest_type,quest_num,quest_id){
|
|
|
|
|
$("#insert_new_poll_question_"+quest_type+"_"+quest_id).html(
|
|
|
|
|
'<%= form_for PollQuestion.new,:url =>create_poll_question_poll_path(@poll.id),:remote => true do |f|%>'+
|
|
|
|
|
'<div class="ur_editor textarea">'+
|
|
|
|
|
'<div class="ur_editor_title">'+
|
|
|
|
|
'<label for="ur_question_title">问题: </label>'+
|
|
|
|
|
'<input type="hidden" name="quest_id" value="'+quest_id+'"/>'+
|
|
|
|
|
'<input type="hidden" name="quest_num" value="'+quest_num+'"/>'+
|
|
|
|
|
'<input type="hidden" name="question_type" value="4"/>'+
|
|
|
|
|
'<input maxlength="250" id="poll_questions_title" class="ur_question_title" contenteditable="true" type="text" name="poll_questions_title" placeholder="请输入多行主观标题"/>'+
|
|
|
|
|
'<input type="checkbox" name="is_necessary" value="true" checked/>'+
|
|
|
|
|
'<label>必答</label>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="ur_editor_toolbar">'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="ur_editor_footer">'+
|
|
|
|
|
'<a class="btn_submit c_white" data-button="ok" onclick="add_poll_question($(this));">'+
|
|
|
|
|
'<%= l(:label_button_ok)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'<a class="btn_cancel" data-button="cancel" onclick="$(this).parent().parent().parent().remove();">'+
|
|
|
|
|
'<%= l(:button_cancel)%>'+
|
|
|
|
|
'</a>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<div class="cl"></div>'+
|
|
|
|
|
'</div>'+
|
|
|
|
|
'<% end%>'
|
|
|
|
|
);
|
|
|
|
|
$("#poll_questions_title").focus();
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-24 16:56:39 +08:00
|
|
|
|
//添加标题时确定按钮
|
|
|
|
|
function add_poll_question(doc)
|
|
|
|
|
{
|
|
|
|
|
var title = $.trim($("#poll_questions_title").val());
|
|
|
|
|
if(title.length == 0){alert("标题不能为空");}else{doc.parent().parent().parent().submit();}
|
|
|
|
|
}
|
|
|
|
|
//修改标题时确定按钮
|
|
|
|
|
function edit_poll_question(doc,id)
|
|
|
|
|
{
|
|
|
|
|
var title = $.trim($("#poll_questions_title_" + id).val());
|
|
|
|
|
if(title.length == 0){alert("标题不能为空");}else{doc.parent().parent().parent().submit();}
|
|
|
|
|
}
|
2015-01-29 16:53:11 +08:00
|
|
|
|
|
2015-03-24 16:56:39 +08:00
|
|
|
|
//问卷头
|
|
|
|
|
function pollsCancel(){$("#polls_head_edit").hide();$("#polls_head_show").show();}
|
|
|
|
|
function pollsSubmit(doc){
|
|
|
|
|
var title = $.trim($("#polls_title").val());
|
|
|
|
|
if(title.length == 0){alert("问卷标题不能为空");}else{doc.parent().parent().parent().submit();}
|
|
|
|
|
}
|
|
|
|
|
function pollsEdit(){$("#polls_head_edit").show();$("#polls_head_show").hide();}
|
|
|
|
|
//
|
|
|
|
|
function pollQuestionCancel(question_id){
|
|
|
|
|
$("#show_poll_questions_"+question_id).show();
|
|
|
|
|
$("#edit_poll_questions_"+question_id).hide();
|
|
|
|
|
}
|
|
|
|
|
function pollQuestionEdit(question_id){
|
|
|
|
|
$("#show_poll_questions_"+question_id).hide();
|
|
|
|
|
$("#edit_poll_questions_"+question_id).show();
|
|
|
|
|
$("#poll_questions_title_"+question_id).focus();
|
|
|
|
|
}
|
|
|
|
|
//单选题
|
|
|
|
|
function add_single_answer(doc)
|
|
|
|
|
{
|
2015-03-25 11:06:35 +08:00
|
|
|
|
doc.parent().after("<li class='ur_item'><label>选项<span class='ur_index'></span>: </label><input maxlength='200' type='text' name='question_answer["+new Date().getTime()+"]' placeholder='新建选项'/>" +
|
2015-03-24 16:56:39 +08:00
|
|
|
|
"<a class='icon_add' title='向下插入选项' onclick='add_single_answer($(this));'></a><a class='icon_remove' title='删除' onclick='remove_single_answer($(this))'></a>"+
|
|
|
|
|
"</li><div class='cl'></div>");
|
|
|
|
|
}
|
|
|
|
|
function remove_single_answer(doc)
|
|
|
|
|
{
|
|
|
|
|
if(doc.parent().siblings("li").length == 0)
|
2015-01-14 14:23:41 +08:00
|
|
|
|
{
|
2015-03-24 16:56:39 +08:00
|
|
|
|
alert("选择题至少有一个选项");
|
2015-01-14 14:23:41 +08:00
|
|
|
|
}
|
2015-03-24 16:56:39 +08:00
|
|
|
|
else
|
2015-01-14 14:23:41 +08:00
|
|
|
|
{
|
2015-03-24 16:56:39 +08:00
|
|
|
|
doc.parent().remove();
|
2015-01-14 14:23:41 +08:00
|
|
|
|
}
|
2015-03-24 16:56:39 +08:00
|
|
|
|
}
|
2015-01-16 17:21:33 +08:00
|
|
|
|
|
2015-03-24 16:56:39 +08:00
|
|
|
|
function poll_submit()
|
|
|
|
|
{
|
|
|
|
|
var title = $.trim($("#polls_name_h").html());
|
|
|
|
|
if(title.length == 0)
|
2015-01-16 17:21:33 +08:00
|
|
|
|
{
|
2015-03-24 16:56:39 +08:00
|
|
|
|
alert("问卷标题不能为空");
|
2015-01-16 17:21:33 +08:00
|
|
|
|
}
|
2015-03-24 16:56:39 +08:00
|
|
|
|
else{
|
|
|
|
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'poll_submit', locals: { :poll => @poll,:is_remote => false}) %>');
|
|
|
|
|
showModal('ajax-modal', '310px');
|
|
|
|
|
$('#ajax-modal').css('height','120px');
|
|
|
|
|
$('#ajax-modal').siblings().remove();
|
|
|
|
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
2015-03-25 10:21:33 +08:00
|
|
|
|
"<a href='javascript:' onclick='clickCanel();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
2015-03-24 16:56:39 +08:00
|
|
|
|
$('#ajax-modal').parent().removeClass("alert_praise");
|
|
|
|
|
$('#ajax-modal').parent().css("top","").css("left","");
|
|
|
|
|
$('#ajax-modal').parent().addClass("popbox_polls");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2015-01-14 10:05:05 +08:00
|
|
|
|
<div class=" polls_content polls_edit" id="polls">
|
|
|
|
|
|
2015-01-16 13:44:20 +08:00
|
|
|
|
<!-- 头部 -->
|
2015-01-16 13:54:06 +08:00
|
|
|
|
<div id="polls_head_show" style="display: none;">
|
2015-01-16 13:44:20 +08:00
|
|
|
|
<%= render :partial => 'show_head', :locals => {:poll => @poll}%>
|
|
|
|
|
</div>
|
2015-01-16 13:54:06 +08:00
|
|
|
|
<div id="polls_head_edit">
|
2015-01-16 13:44:20 +08:00
|
|
|
|
<%= render :partial => 'edit_head', :locals => {:poll => @poll}%>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 问题 -->
|
|
|
|
|
<div id="poll_content">
|
|
|
|
|
<%= render :partial => 'poll_content', :locals => {:poll => @poll}%>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-03-24 16:56:39 +08:00
|
|
|
|
<div class="tabs">
|
2015-01-14 10:05:05 +08:00
|
|
|
|
<ul class="tabs_list">
|
|
|
|
|
<li class="tab_item02 " >
|
|
|
|
|
<a title="<%= l(:label_MC) %>" class="tab_icon icon_radio" onclick="add_MC();">
|
|
|
|
|
<%= l(:label_MC) %>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="tab_item02 " >
|
|
|
|
|
<a title="<%= l(:label_MCQ) %>" class=" tab_icon icon_checkbox" onclick="add_MCQ();">
|
|
|
|
|
<%= l(:label_MCQ) %>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="tab_item02 " >
|
|
|
|
|
<a title="<%= l(:label_single) %>" class="tab_icon icon_text" onclick="add_single();">
|
|
|
|
|
<%= l(:label_single) %>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="tab_item02 " >
|
|
|
|
|
<a title="<%= l(:label_mulit)%>" class="tab_icon icon_textarea" onclick="add_mulit();">
|
|
|
|
|
<%= l(:label_mulit)%>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
</div><!--选项 end-->
|
|
|
|
|
|
2015-01-15 16:31:40 +08:00
|
|
|
|
<!-- 新增问题 -->
|
|
|
|
|
<div id="new_poll_question">
|
2015-01-14 10:05:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="ur_buttons">
|
2015-01-16 17:21:33 +08:00
|
|
|
|
<a class="ur_button_submit" onclick="poll_submit();">
|
2015-01-14 10:05:05 +08:00
|
|
|
|
<%= l(:label_memo_create)%>
|
|
|
|
|
</a>
|
2015-03-24 16:56:39 +08:00
|
|
|
|
<div class="polls_cha">
|
|
|
|
|
<input type="checkbox" name="" value="" >
|
|
|
|
|
<label for="">允许学生查看调查结果</label>
|
|
|
|
|
</div>
|
2015-01-14 10:05:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="cl"></div>
|
|
|
|
|
|
|
|
|
|
</div><!--编辑end-->
|