evorepo/templates/todolists/email_notification.txt
Dan McGee e3e3e49876 Add URL to todolist email
Signed-off-by: Dan McGee <dan@archlinux.org>
2011-11-03 17:33:40 -05:00

12 lines
499 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:
Name: {{ todolist.name }}
URL: {{ todolist.get_full_url }}
Creator: {{ todolist.creator.get_full_name }}
Description:
{{ todolist.description|striptags|wordwrap:78 }}{% endautoescape %}