{% extends 'email_base.html' %} {% load i18n %} {% block email_con %} {% autoescape off %}

{% trans "Hi," %}

{% blocktrans %} You're receiving this e-mail because you are the admin of Syncwerk. {% endblocktrans %}

{% blocktrans %} Virus detected in Syncwerk. Here's the list of the latest infected files: {% endblocktrans %}

{% for file in infected_files %} {% endfor %}
Folder name Folder id Owner Commit id Infected file path Detected time
{{ file.folder_name }} {{ file.folder_id }} {{ file.folder_owner }} {{ file.commit_id }} {{ file.infected_file_path }} {{ file.detected_at }}
{% endautoescape %} {% endblock %}