123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <%
- # 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/>.
- %>
- <% outcome_result ||= nil %>
- <% show_results_link = true if show_results_link.nil? %>
- <li class="outcome_result" id="result_<%= outcome_result ? outcome_result.id : "blank" %>" style="<%= hidden unless outcome_result %>">
- <% if show_results_link %>
- <a href="<%= context_url(@context, :context_outcome_result_url, @outcome, outcome_result ? outcome_result.id : "{{ id }}") %>" class="title">
- <% else %>
- <span class="title">
- <% end %>
- <%= outcome_result.try_rescue(:title) %>
- <% if show_results_link %>
- </a>
- <% else %>
- </span>
- <% end %>
- <div class="scoring">
- <%= t :scoring, "%{points} out of %{possible_points}",
- :points => raw("<span class=\"score\">#{outcome_result.try_rescue(:score) || nbsp}</span>"),
- :possible_points => raw("<span class=\"possible\">#{outcome_result.try_rescue(:possible) || nbsp}</span>")
- %>
- <% if outcome_result && outcome_result.mastery? %>
- <span class="mastery">(<i class="icon-check" aria-hidden="true"></i><%= t :outcome_mastered, 'mastered' %>)</span>
- <% end %>
- </div>
- <div class="last_attempt">
- <%= t :attempt_info, "attempt #%{attempt_number}, %{attempt_date}", :attempt_number => "<span class=\"attempt\">#{outcome_result.try_rescue(:attempt) || "1"}</span>".html_safe, :attempt_date => "<span class=\"assessed_at_formatted\">#{datetime_string(outcome_result.try_rescue(:assessed_at))}</span>".html_safe %>
- </div>
- <% if show_results_link %>
- <div class="results_link">
- <a href="<%= context_url(@context, :context_user_outcomes_results_url, outcome_result ? outcome_result.user_id : "{{ user_id }}") %>"><%= t :all_outcomes, "all outcome results for this student" %></a>
- </div>
- <% end %>
- </li>
|