10 lines
675 B
Plaintext
10 lines
675 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 %>
|
|
|
|
<%= 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', 'Click the following url to finish the registration process: %{link}', :link => content(:link)) %>
|