问卷显示权限管理
This commit is contained in:
parent
dc2c96f59a
commit
0dc0ba3a4a
|
@ -11,13 +11,23 @@
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<div class="polls_list">
|
<div class="polls_list">
|
||||||
<% @polls.each do |poll|%>
|
<% @polls.each do |poll|%>
|
||||||
|
|
||||||
|
<% unless !@is_teacher && poll.polls_status != 2 %>
|
||||||
<ul id="polls_<%= poll.id %>">
|
<ul id="polls_<%= poll.id %>">
|
||||||
<li>
|
<li>
|
||||||
|
<% if @is_teacher %>
|
||||||
<% if has_commit_poll?(poll.id ,User.current) %>
|
<% if has_commit_poll?(poll.id ,User.current) %>
|
||||||
<sapn class="polls_title fl"> <%= poll.polls_name %></sapn>
|
<sapn class="polls_title fl"> <%= poll.polls_name %></sapn>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to poll.polls_name, poll_path(poll.id), :class => "polls_title fl" %>
|
<%= link_to poll.polls_name, poll_path(poll.id), :class => "polls_title fl" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<% if has_commit_poll?(poll.id ,User.current) && poll.polls_status == 2 %>
|
||||||
|
<sapn class="polls_title fl"> <%= poll.polls_name %></sapn>
|
||||||
|
<% elsif (!has_commit_poll?(poll.id ,User.current)) && poll.polls_status == 2 %>
|
||||||
|
<%= link_to poll.polls_name, poll_path(poll.id), :class => "polls_title fl" %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<%if @is_teacher%>
|
<%if @is_teacher%>
|
||||||
|
@ -25,13 +35,13 @@
|
||||||
<% end%>
|
<% end%>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<% if @is_teacher%>
|
<% if @is_teacher && poll.polls_status == 1 #新建状态的问卷可删除%>
|
||||||
<%= link_to(l(:button_delete), poll,
|
<%= link_to(l(:button_delete), poll,
|
||||||
method: :delete, :confirm => l(:text_are_you_sure), :remote => true, :class => "polls_de fr ml20 mr10") %>
|
method: :delete, :confirm => l(:text_are_you_sure), :remote => true, :class => "polls_de fr ml20 mr10") %>
|
||||||
<% end%>
|
<% end%>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<% if @is_teacher%>
|
<% if @is_teacher && poll.polls_status == 1 #新建状态的问卷可编辑%>
|
||||||
<%= link_to l(:button_edit), edit_poll_path(poll.id), :class => "polls_de fr ml20"%>
|
<%= link_to l(:button_edit), edit_poll_path(poll.id), :class => "polls_de fr ml20"%>
|
||||||
<% end%>
|
<% end%>
|
||||||
</li>
|
</li>
|
||||||
|
@ -39,6 +49,8 @@
|
||||||
<%= format_time poll.created_at%>
|
<%= format_time poll.created_at%>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<% end%>
|
<% end%>
|
||||||
|
|
||||||
|
|
|
@ -217,7 +217,9 @@
|
||||||
</ul>
|
</ul>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<div class="ur_buttons" style="width: 100px;">
|
<div class="ur_buttons" style="width: 100px;">
|
||||||
|
<% if @poll.polls_status == 2 %>
|
||||||
<%= link_to "提交",commit_poll_poll_path(@poll), :method => :post,:class => "ur_button",:format => 'js',:remote=>true %>
|
<%= link_to "提交",commit_poll_poll_path(@poll), :method => :post,:class => "ur_button",:format => 'js',:remote=>true %>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<div class="ur_progress_text">答题已完成 <strong class="ur_progress_number">0%</strong> </div>
|
<div class="ur_progress_text">答题已完成 <strong class="ur_progress_number">0%</strong> </div>
|
||||||
|
|
Loading…
Reference in New Issue