1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <%
- # 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/>.
- %>
- <%
- css_bundle :learning_outcomes
- js_bundle :react_outcome_alignment
- content_for :page_title, @outcome.short_description
- %>
- <% content_for :right_side do %>
- <a class="btn button-sidebar-wide" href="<%= context_url(@context, :context_outcomes_url) %>">
- <i class="icon-arrow-left"></i>
- <%= t "#buttons.back_to_outcomes", "Back to Outcomes" %>
- </a>
- <% end %>
- <h2><%= t "#titles.aligned_items", "Aligned Items" %></h2>
- <div id="outcome_urls" style="display: none;">
- <% if @context.is_a?(Course) %>
- <a href="<%= context_url(@context, :context_outcome_reorder_alignments_url, @outcome.id) %>" class="reorder_alignments_url"> </a>
- <a href="<%= context_url(@context, :context_outcome_align_url, @outcome.id) %>" class="align_url"> </a>
- {{> views/shared/select_content_dialog}}
- <% end %>
- </div>
- <%= t(:no_aligned_items, "No aligned items") if @alignments.empty? %>
- <ul id="alignments" class="<%= 'orderable' if @context.is_a?(Course) %>">
- <% @alignments.each do |alignment| %>
- {{> views/outcome_alignment}}
- <% end %>
- </ul>
- <h2 style="margin-top: 20px;">{{#t}}Outcome Artifacts{{/t}}</h2>
- <%= t(:no_artifacts, "No artifacts") if @results.empty? %>
- <div id="outcome_results">
- <ul id="outcome_results_list">
- <% @results.each do |result| %>
- <%#
- There are a few old LearningOutcomeResults that have a nil artifact, and
- many that have a Submission as an artifact. We want to get rid of these
- because they come from bad data, and step 1 toward that goal is to stop
- creating them and hide them in the UI.
- The LORs with a nil artifact are very old and I believe came from a very
- early incarnation of outcomes. The LORs with a Submission as an artifact
- came from a combination of two code problems. The first was old code
- that allowed an assignment that was aligned with an outcome but did not
- have a rubric to create LORs directly based on it's submission. The
- second was a bug that prevented the assignment <-> outcome link from
- being destroyed when a rubric with an outcome was removed from an
- assignment.
- %>
- <% if result.artifact_type.present? && result.artifact_type != 'Submission' %>
- {{> views/outcome_result}}
- <% end %>
- <% end %>
- </ul>
- <%= will_paginate(@results) %>
- </div>
- <div style="display: none;">
- <div id="outcome_results_total_pages"><%= @results.total_pages %></div>
- <a href="<%= context_url(@context, :context_outcome_results_url, @outcome.id) %>" style="display: none;" class="outcome_results_url"> </a>
- <ul>
- {{> views/outcome_result}}
- {{> views/outcome_alignment}}
- </ul>
- </div>
|