mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
37 lines
1.5 KiB
Text
37 lines
1.5 KiB
Text
<p>Hello <%= @user.name %>,</p>
|
|
|
|
<% unless @notification.deliver? %>
|
|
<p><%= I18n.t("notifications.email_title") %></p>
|
|
<p>Type: <%= I18n.t("notifications.types.#{@notification.type_of}") %></p>
|
|
<% end %>
|
|
|
|
<p>
|
|
<% if @notification.system_message? %>
|
|
<% # We assume the system notification is clean %>
|
|
<%= @notification.title.html_safe %>
|
|
<% elsif @notification.deliver? %>
|
|
<p><%= I18n.t("notifications.deliver.email_body_1") %></p>
|
|
<p><%= I18n.t("notifications.deliver.email_body_2") %></p>
|
|
<% else %>
|
|
<%= sanitize_input(prepend_server_url_to_links(@notification.title)) %>
|
|
<% end %>
|
|
</p>
|
|
|
|
<p>
|
|
<% if @notification.system_message? %>
|
|
<% # We assume the system notification is clean %>
|
|
<%= @notification.message.html_safe %>
|
|
<% elsif @notification.deliver? && @notification.message.match?(/data-id=('|")(\d*)('|")/) %>
|
|
<%= I18n.t("notifications.deliver.download_link") %>
|
|
<% # work around the problem with inserting the link of zipExport %>
|
|
<% zip_id = /data-id=('|")(\d*)('|")/.match(@notification.message)[2] %>
|
|
<% if /download_export_all_zip/.match(@notification.message) %>
|
|
<% download_url = zip_exports_download_export_all_url(zip_id) %>
|
|
<% else %>
|
|
<% download_url = zip_exports_download_url(zip_id) %>
|
|
<% end %>
|
|
<%= @notification.message.gsub(/href='.+'/, "href='#{download_url}'").html_safe %>
|
|
<% else %>
|
|
<%= sanitize_input(prepend_server_url_to_links(@notification.message)) %>
|
|
<% end %>
|
|
</p>
|