]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notifications/digest.html
merging jambazov > trunk
[osqa.git] / forum / skins / default / templates / notifications / digest.html
1 {% load i18n extra_tags email_tags %}
2
3 {% declare %}
4     prefix = html.mark_safe(settings.EMAIL_SUBJECT_PREFIX)
5     app_name = settings.APP_SHORT_NAME
6     app_url = settings.APP_URL
7
8     new_member_links = html.mark_safe(", ".join([html.objlink(u, style=settings.EMAIL_ANCHOR_STYLE) for u in new_members]))
9     new_question_count = digest.count
10
11 {% enddeclare %}
12
13 {% email %}
14     {% subject %}{% blocktrans %}{{ prefix }} Daily digest{% endblocktrans %}{% endsubject %}
15
16     {% htmlcontent notifications/base.html %}
17         <p style="{{ p_style }}">
18             {% blocktrans %}
19             This is a brief of what's going on the {{ app_name }} community since our last update.
20             {% endblocktrans %}
21         </p>                           
22
23         {% if new_member_count %}
24         <p style="{{ p_style }}">
25         {% if show_all_users %}
26         {% blocktrans %}
27             There are {{ new_member_count }} new members in the community. {{ new_member_links }} were the most active so far.
28         {% endblocktrans %}
29         {% else %}
30         {% blocktrans %}
31             {{ new_member_links }} have joined the {{ app_name }} community.
32         {% endblocktrans %}
33         {% endif %}
34         {% endif %}
35         </p>
36
37         {% if new_question_count %}
38
39         {% declare %}
40             new_questions_link = html.hyperlink(app_url + reverse('questions') + '?sort=' + _('latest'), _('new questions'), style=a_style)
41             user_questions = digest.get_for_user(recipient)
42             subscriptions_link = html.hyperlink(app_url + recipient.get_subscribed_url(), _('subscriptions'), style=a_style)
43         {% enddeclare %}
44
45         <p style="{{ p_style }}">
46             {% blocktrans %}
47             {{ new_question_count }} {{ new_questions_link }} were posted since our last update.
48             {% endblocktrans %}
49         </p>
50
51         {% if user_questions.interesting %}
52         <p style="{{ p_style }}">
53             {% trans "We think you might like the following questions:" %}
54         </p>
55         <ul>
56         {% for q in user_questions.interesting %}
57             <li>
58                 <a style="{{ a_style }}" href="{{ app_url }}{{ q.get_absolute_url  }}">{{ q.title }}</a>
59             </li>
60         {% endfor %}
61         </ul>
62         {% endif %}
63
64         {% if user_questions.may_help %}
65         <p style="{{ p_style }}">
66             {% trans "These new questions didn't get many attention from the community, but we think you may be able to help:" %}
67         </p>
68         <ul>
69         {% for q in user_questions.may_help %}
70             <li>
71                 <a style="{{ a_style }}" href="{{ app_url }}{{ q.get_absolute_url  }}">{{ q.title }}</a>
72             </li>
73         {% endfor %}
74         </ul>
75
76         {% if user_questions.subscriptions %}
77         <p style="{{ p_style }}">
78             {% blocktrans %}Meanwhile, some of your {{ subscriptions_link }} have new updates since you last visited them:{% endblocktrans %}
79         </p>
80         <ul>
81         {% for q in user_questions.subscriptions %}
82             <li>
83                 <a style="{{ a_style }}" href="{{ app_url }}{{ q.get_absolute_url  }}">{{ q.title }}</a>
84             </li>
85         {% endfor %}
86         </ul>
87         {% endif %}
88         
89         {% endif %}
90
91         {% endif %}
92
93     {% endhtmlcontent %}
94
95     {% textcontent notifications/base_text.html %}
96
97     {% endtextcontent %}
98 {% endemail %}