░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/app/views/question_banks
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: _question_bank.html.erb
<% # Copyright (C) 2011 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. %> <% question_bank ||= nil %> <% context = question_bank ? question_bank.context : @context %> <% title = question_bank&.title || '{{ title }}' %> <div class="question_bank" id="question_bank_<%= question_bank ? question_bank.id : "blank" %>" style="<%= hidden unless question_bank %>"> <div class="header clearfix"> <div class="header_content"> <a class="title" href="<%= context_url(context, :context_question_bank_url, question_bank ? question_bank.id : "{{ id }}") %>"><%= question_bank&.title || t('no_name', "No Name") %></a> </div> <div class="links"> <% not_yet_bookmarked = question_bank && !question_bank.bookmarked_for?(@current_user) %> <% bookmark_bank_text = t('Bookmark %{bank}', :bank => title) %> <% unbookmark_bank_text = t('Unbookmark %{bank}', :bank => title) %> <a href="<%= context_url(context, :context_question_bank_bookmark_url, question_bank ? question_bank.id : "{{ id }}") %>" class="Button Button--icon-action bookmark_bank_link" title="<%= bookmark_bank_text %>" style="<%= hidden unless not_yet_bookmarked %>"><span class="screenreader-only"><%= bookmark_bank_text %></span><i class="icon-bookmark" aria-hidden="true"></i></a> <a href="<%= context_url(context, :context_question_bank_bookmark_url, question_bank ? question_bank.id : "{{ id }}", :unbookmark => 1) %>" class="Button Button--icon-action bookmark_bank_link" title="<%= unbookmark_bank_text %>" style="<%= hidden if not_yet_bookmarked %>"><span class="screenreader-only"><%= unbookmark_bank_text %></span><i class="icon-remove-bookmark" aria-hidden="true"></i></a> <% if context == @context && @context.grants_any_right?(@current_user, session, :manage_assignments, :manage_assignments_edit, :manage_assignments_delete) %> <% edit_bank_text = t('Edit %{bank}', :bank => title) %> <% delete_bank_text = t('Delete %{bank}', :bank => title) %> <span style="<%= hidden if question_bank && !can_do(question_bank, @current_user, :update) %>"> <a href="<%= context_url(context, :context_question_bank_url, question_bank ? question_bank.id : "{{ id }}") %>" class="Button Button--icon-action edit_bank_link" title="<%= edit_bank_text %>"><span class="screenreader-only"><%= edit_bank_text %></span><i class="icon-edit" aria-hidden="true"></i></a> </span> <span style="<%= hidden if question_bank && !can_do(question_bank, @current_user, :delete) %>"> <a href="<%= context_url(context, :context_question_bank_url, question_bank ? question_bank.id : "{{ id }}") %>" class="Button Button--icon-action delete_bank_link" title="<%= delete_bank_text %>"><span class="screenreader-only"><%= delete_bank_text %></span><i class="icon-end" aria-hidden="true"></i></a> </span> <% end %> </div> <div class="clear"></div> </div> <div class="content"> <div><%= question_bank ? t('question_count', "Question", :count => question_bank.assessment_questions.active.count) : t('no_questions', "No Questions") %></div> <div><%= t('last_updated', "Last Updated: *%{datetime}*", :datetime => datetime_string(question_bank.try_rescue(:updated_at)) || nbsp, :wrapper => '<span class="last_updated_at">\1</span>') %></div> </div> </div>
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 _question_bank.html.erb
ERB
3.8 KB
2023-09-24 03:36
EDIT
📄 _question_teaser.html.erb
ERB
2.3 KB
2023-09-24 03:36
EDIT
📄 index.html.erb
ERB
3 KB
2023-09-24 03:36
EDIT
📄 show.html.erb
ERB
9.4 KB
2023-09-24 03:36
EDIT