{% load i18n %}{% load txcommontags %}{% url project_timeline project.slug as project_timeline_url %}{% with project.name as project_name %}
{% blocktrans %}I am bringing you the weekly translation report for your project '{{ project_name }}'.{% endblocktrans %}
{% for component in project.component_set.all %}
{{ project.name }} » {{ component.name }}

- Repository: {{ component.unit.root }}
{% if component.unit.branch %}- Branch: {{ component.unit.branch }}{% endif %}
- Last updated: {{ component.unit.last_checkout|date:"G:i Y-n-d" }}

{{ component.trans.get_rest_stats }}{% endfor %}
{% blocktrans %}Activity report from past week (last 30 actions):{% endblocktrans %}

{% for actionlog in actionlogs %}- {{ actionlog.message|strip_tags }} by {{actionlog.user}} on {{actionlog.action_time|date:"D M j, G:i"}}.
{% endfor %}
{% blocktrans %}For a full report, visit your project's timeline page at{% endblocktrans %} http://{{current_site}}{{ project_timeline_url }}
{% endwith %}