discourse/app/views/user_notifications/digest.text.erb

61 lines
2.1 KiB
Plaintext
Raw Normal View History

2013-02-05 14:16:51 -05:00
<%- site_link = raw(@markdown_linker.create(@site_name, '/')) %>
2013-02-25 11:42:20 -05:00
<%= raw(t 'user_notifications.digest.why',
2013-02-05 14:16:51 -05:00
site_link: site_link,
last_seen_at: @last_seen_at) %>
<%- @counts.each do |count| -%>
<%= count[:value] -%> <%=t count[:label_key] %>
<%- end -%>
2013-02-05 14:16:51 -05:00
--------------------------------------------------------------------------------
<%- if @popular_topics.present? %>
### <%=t 'user_notifications.digest.popular_topics' %>
<%- @popular_topics.each_with_index do |t,i| %>
<%= raw(@markdown_linker.create(t.title, t.relative_url)) %>
<%- if t.best_post.present? %>
<%= raw(t.best_post.excerpt(1000, strip_links: true, text_entities: true, markdown_images: true)) %>
--------------------------------------------------------------------------------
2013-02-05 14:16:51 -05:00
<%- end %>
<%= digest_custom_text("below_post_#{i+1}") %>
2013-02-05 14:16:51 -05:00
<%- end %>
<%- end %>
<%= digest_custom_text("above_popular_topics") %>
<%- if @popular_posts.present? %>
### <%=t 'user_notifications.digest.popular_posts' %>
<%- @popular_posts.each_with_index do |post,i| %>
<%= post.user.username -%> - <%= raw(@markdown_linker.create(post.topic.title, post.topic.relative_url)) %>
<%= raw(post.excerpt(1000, strip_links: true, text_entities: true, markdown_images: true)) %>
--------------------------------------------------------------------------------
<%- end %>
<%- end %>
<%- if @other_new_for_you.present? %>
**<%=t 'user_notifications.digest.more_new' %>**
<%- @other_new_for_you.each do |t| %>
* <%= raw(@markdown_linker.create(t.title, t.relative_url)) %> - <%= t.posts_count %> - <%- if t.category %>[<%= t.category.name %>]<%- end %>
<%- end -%>
<%- end %>
<%= digest_custom_text("below_popular_topics") %>
2013-02-05 14:16:51 -05:00
<%= raw(@markdown_linker.references) %>
<%= digest_custom_text("above_footer") %>
<%=raw(t :'user_notifications.digest.unsubscribe',
2013-02-05 14:16:51 -05:00
site_link: site_link,
email_settings_url: Discourse.base_url + '/my/preferences/emails',
unsubscribe_link: raw(@markdown_linker.create(t('user_notifications.digest.click_here'), email_unsubscribe_url(key: @unsubscribe_key, only_path: true)))) %>
2013-02-05 14:16:51 -05:00
<%= raw(@markdown_linker.references) %>
<%= digest_custom_text("below_footer") %>