new_member_count = new_members.count()
new_member_count = new_members.count()
+ # The number of the flagged content for the day
+ flagged_count = Flag.objects.all().count()
+
if new_member_count >= SHOW_N_MORE_ACTIVE_NEW_MEMBERS:
new_members = new_members[:SHOW_N_MORE_ACTIVE_NEW_MEMBERS]
show_all_users = True
if new_member_count >= SHOW_N_MORE_ACTIVE_NEW_MEMBERS:
new_members = new_members[:SHOW_N_MORE_ACTIVE_NEW_MEMBERS]
show_all_users = True
+ {% if recipient.is_superuser %}
+ {% declare %}
+ flagged_url = html.hyperlink(app_url + reverse('admin_flagged_posts'), str(flagged_count) + ' ' + _('posts'), style=a_style)
+ {% enddeclare %}
+ <p style="{{ p_style }}">
+ {% blocktrans %}
+ {{ flagged_url }} have been marked as flagged.
+ {% endblocktrans %}
+ </p>
+ {% endif %}
+
{% endhtmlcontent %}
{% textcontent notifications/base_text.html %}
{% endhtmlcontent %}
{% textcontent notifications/base_text.html %}