{% extends "account/email/base.html" %} {% block subject %} Weekly update of your project: {{project.name}} {% endblock %} {% block subtitle %} Hello {{ project.owner.fullname }}, {% endblock %} {% block body %}

Here you have some insights about how your project has been running over the last week.

Number of completed tasks: {{n_completed_tasks | humanize_intword }}

Most active day of the week: {{active_day[0]}} with {{active_day[1]}} answers submitted

{% set text = [project.name, ' needs your help! Can you help us?']%}

{{text | join }}| truncate(100) }}

Tweet it!

Top 5 registered crafters

    {% for u in users_stats.auth.top5 %}
  1. {{u.fullname}}
  2. {% endfor %}
{% if users_stats['anon']['top5'] %}

Top 5 anonymous crafters locations

    {% for u in users_stats['anon']['top5'] %}
  1. {{u.loc.country_name}}, {{u.loc.city}}
  2. {% endfor %}
{% endif %}

All the best,

{{config.BRAND}} Team

{% endblock %}