evorepo/templates/todolists/email_notification.txt
Dan McGee 65e965c8f7 Send only one email per todolist
Customize each email on a per-maintainer basis and list all the relevant
packages inside, rather than spamming people.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-03-04 12:39:56 -06:00

11 lines
456 B
Plaintext

{% autoescape off %}The todo list {{ todolist.name }} has had the following packages added to it for which you are a maintainer:
{% for tpkg in todo_packages %}
{{ tpkg.pkg.repo.name|lower }}/{{ tpkg.pkg.pkgname }} ({{ tpkg.pkg.arch.name }}) - {{ tpkg.pkg.get_full_url }}{% endfor %}
Todo list information:
Creator: {{todolist.creator.get_full_name}}
Name: {{todolist.name}}
Description:
{{todolist.description|striptags|wordwrap:69}}{% endautoescape %}