27 lines
997 B
Plaintext
27 lines
997 B
Plaintext
<% define_content :link do %>
|
|
<%= polymorphic_url([asset.group.context, asset.group]) %>
|
|
<% end %>
|
|
|
|
<% define_content :subject do %>
|
|
<%= t :subject, "New Group Membership for %{course_or_account}", :course_or_account => asset.group.context.name %>
|
|
<% end %>
|
|
|
|
<% define_content :footer_link do %>
|
|
<a href="<%= content(:link) %>">
|
|
<%= t :details, "You can check out the group by clicking here" %>
|
|
</a>
|
|
<% end %>
|
|
|
|
<p><%= t :title, "New Group Membership: %{group_name}", :group_name => asset.group.name %></p>
|
|
|
|
<p>
|
|
<%=
|
|
case asset.group.context_type
|
|
when 'Account'
|
|
t :body_account, "You've been added to a new group for the account %{account}. The name of the group is %{group_name}.", :account => asset.group.context.name, :group_name => asset.group.name
|
|
else
|
|
t :body_course, "You've been added to a new group for the course %{course}. The name of the group is %{group_name}.", :course => asset.group.context.name, :group_name => asset.group.name
|
|
end
|
|
%>
|
|
</p>
|