enrollment.mustache 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <%
  2. # Copyright (C) 2011 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. %>
  18. <li class="<%= 'unpublished' if enrollment.course.created? || enrollment.course.claimed? %> <%= enrollment.state_based_on_date %> clearfix">
  19. <a href="<%= course_user_path(enrollment.course_id, enrollment.user_id) %>" style="float: left; max-width: 800px;">
  20. <span class="name" title="<%= enrollment.long_name(@current_user) %>">
  21. <%= enrollment.long_name(@current_user) %>
  22. <% if enrollment.course.created? || enrollment.course.claimed? %>
  23. <i class="icon-unpublish" title="{{#t}}This course hasn't been published yet{{/t}}"></i>
  24. <% end %>
  25. </span>
  26. <% unless enrollment.course.enrollment_term.default_term? %>
  27. <span class="subtitle ellipsis"><%= enrollment.course.enrollment_term.name %></span>
  28. <% end %>
  29. <span class="subtitle ellipsis">
  30. <%= Enrollment.workflow_readable_type(enrollment.readable_state_based_on_date) %>,
  31. <%=
  32. case enrollment.class.to_s
  33. when 'TeacherEnrollment'
  34. t('roles_teacher', "Enrolled as a Teacher.")
  35. when 'StudentEnrollment'
  36. t('roles_student', "Enrolled as a Student.")
  37. when 'TaEnrollment'
  38. t('roles_ta', "Enrolled as a TA.")
  39. when 'ObserverEnrollment'
  40. t('roles_observer', "Enrolled as an Observer.")
  41. when 'DesignerEnrollment'
  42. t('roles_designer', "Enrolled as a Designer.")
  43. else
  44. t('roles_student', "Enrolled as a Student.")
  45. end
  46. %>
  47. <% if enrollment.associated_user %>
  48. <%= t('linked_to_user', '(Linked to %{user_name})', :user_name => enrollment.associated_user.name) %>
  49. <% end %>
  50. </span>
  51. </a>
  52. <span style="float: right; margin-right: 5px; margin-top: 3px;">
  53. <a href="#" rel="<%= course_unenroll_url(enrollment.course_id, enrollment.id) %>" class="unenroll_link" role="button">
  54. <i class="icon-end standalone-icon"></i>
  55. </a>
  56. </span>
  57. <% if enrollment.admin? && can_do(enrollment.user, @current_user, :read_reports) %>
  58. <div style='clear:left'>
  59. <%= link_to(t('links.teacher_activity', 'See Student Interactions Report'), user_course_teacher_activity_url(enrollment.user_id, enrollment.course_id)) %>
  60. </div>
  61. <% end %>
  62. <span class="clear"></span>
  63. </li>