socialforge/app/views/poll/_edit_mulit.html.erb

21 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-01-16 15:34:25 +08:00
<%= form_for("",:url => update_poll_question_poll_index_path(:poll_question => poll_question.id),:remote => true) do |f|%>
2015-01-13 18:21:46 +08:00
<div class="ur_editor textarea"> <!--编辑多行文字start-->
<div class="ur_editor_title">
<label for="ur_question_title">问题:&nbsp;&nbsp;</label>
2015-01-16 15:34:25 +08:00
<input type="hidden" name="question_type" value="<%= poll_question.question_type%>"/>
<input class="ur_question_title" type="text" name="poll_questions_title" id="poll_questions_title_<%=poll_question.id%>" placeholder="请输入多行主观标题" value="<%= poll_question.question_title%>"/>
2015-01-16 15:34:25 +08:00
<input type="checkbox" name="is_necessary" value="true" <%= poll_question.is_necessary == 1 ? "checked" : ""%>/>
2015-01-13 18:21:46 +08:00
<label for="ur_question_require">必答</label>
</div>
<div class="ur_editor_toolbar">
2015-01-16 15:34:25 +08:00
<!--<label>尺寸:</label>-->
<!--<label>宽 <input name="cols" type="number" min="1" value="60"> 字</label>,-->
<!--<label>高 <input name="rows" type="number" min="1" value="5"> 行</label>-->
2015-01-13 18:21:46 +08:00
</div>
<div class="ur_editor_footer">
2015-01-16 15:34:25 +08:00
<a class="btn_submit" data-button="ok" onclick="$(this).parent().parent().parent().submit();">确定</a>
<a class="btn_cancel" data-button="cancel" onclick="$(this).parent().parent().parent().remove();">取消</a>
2015-01-13 18:21:46 +08:00
</div>
<div class="cl"></div>
2015-01-16 15:34:25 +08:00
</div><!--编辑多行文字end-->
<% end%>