29 lines
964 B
Plaintext
29 lines
964 B
Plaintext
<% course = asset.is_a?(Course) ? asset : asset.context %>
|
|
|
|
<% define_content :link do %>
|
|
<%= course_assignments_url(course) %>
|
|
<% end %>
|
|
|
|
<% define_content :subject do %>
|
|
<%= before_label('subject', 'Grade Weight Changed') %> <%= asset.name %>
|
|
<% end %>
|
|
|
|
<% define_content :footer_link do %>
|
|
<a href="<%= content(:link) %>">
|
|
<%= t 'see_details', 'You can see details here' %>
|
|
</a>
|
|
<% end %>
|
|
|
|
<p><%= t('grade_changed', "The grading policy for the course, %{course_name} has changed.", :course_name => course.name) %></p>
|
|
|
|
<% if course.group_weighting_scheme == 'percent' %>
|
|
<p>
|
|
<%= before_label('grades_based_on_percent', 'Grading is based on the weighted total for each assignment group') %>
|
|
<% course.assignment_groups.active.each do |group |%>
|
|
<br/>- <%= group.name %>: <%= group.group_weight %>%
|
|
<% end %>
|
|
</p>
|
|
<% else %>
|
|
<p><%= t('grading_based_on_points', 'Grading is based on total points for all assignments.') %></p>
|
|
<% end %>
|