14 lines
605 B
Plaintext
14 lines
605 B
Plaintext
<% define_content :link do %>
|
|
http://<%= HostUrl.context_host(asset.context) %>/<%= asset.context.class.to_s.downcase.pluralize %>/<%= asset.context_id %>/imports/list
|
|
<% end %>
|
|
|
|
<% define_content :subject do %>
|
|
<%= t :subject, "Content Import Failed: %{course_name}", :course_name => asset.context.name %>
|
|
<% end %>
|
|
|
|
<%= t :body, <<-BODY, :destination => asset.context.name, :error_url => content(:link)
|
|
There was a problem importing some content into your course "%{destination}".
|
|
Please notify your system administrator, and point them to your import's info page: %{error_url}
|
|
BODY
|
|
%>
|