14 lines
771 B
Plaintext
14 lines
771 B
Plaintext
<% p = asset.is_a?(Pseudonym) ? asset : asset.pseudonym %>
|
|
<% cc = asset.is_a?(CommunicationChannel) ? asset : (p.communication_channel || p.user.communication_channel) %>
|
|
<% define_content :link do %>
|
|
<%= p.user.registered? ? confirm_change_password_url(p, cc.confirmation_code) : registration_confirmation_url(cc.confirmation_code) %>
|
|
<% end %>
|
|
|
|
<% define_content :subject do %>
|
|
<%= t :subject, "Finish Registration: Canvas" %>
|
|
<% end %>
|
|
|
|
<%= t :body, "You have been registered for a Canvas account at %{account}! Before you can log in and start using Canvas, you'll need to finish the configuration process.", :account => p.account.display_name %>
|
|
|
|
<%= t :link_message, "To finish the registration process, please visit the following url:" %>
|
|
<%= content :link %> |