evorepo/templates/todolists/email_notification.txt
Dan McGee c8ece67cec Convert to using new todolist models everywhere
This is a rather widespread set of changes converting usage to the new
todo list and todo list package model recently introduced. The data
migration is not included in this commit. After this commit, the old
model should no longer be referenced anywhere.

Signed-off-by: Dan McGee <dan@archlinux.org>
2012-12-28 14:48:29 -06:00

12 lines
487 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.repo.name|lower }}/{{ tpkg.pkgname }} ({{ tpkg.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 %}