Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
45 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<html> | ||
<head></head> | ||
<body> | ||
<p> | ||
<a>{% trans username=(user.fullname or user.username) %}Hey {{ username }},{% endtrans %}</a> | ||
</p> | ||
<p> | ||
<a>{% trans %}A new access token, named "{{ name }}", has been created.{% endtrans %}</a> | ||
</p> | ||
<p> | ||
{% trans %}If you did not make this change and believe your account has been compromised, please contact your administrator.{% endtrans %} | ||
</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
<html> | ||
<head></head> | ||
<body> | ||
{% trans username=(user.fullname or user.username) %}Hey {{ username }},{% endtrans %} | ||
<p> | ||
<a>{% trans username=(user.fullname or user.username) %}Hey {{ username }},{% endtrans %}</a> | ||
</p> | ||
<p> | ||
{% trans %}You are receiving this email to notify you about your backups. The | ||
following repositories are inactive for some time. We invite you to have a look | ||
at your last backup schedule.{% endtrans %} | ||
</p> | ||
<ul> | ||
{% for r in repos %}<li>{{ r.display_name }}</li>{% endfor %} | ||
{% for r in repos %} | ||
<li> | ||
<a>{{ r.display_name }}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
<p> | ||
{% trans %}If you don't want to be notify about this. You need to review your | ||
user preferences.{% endtrans %} | ||
</p> | ||
<p>{% trans %}If you don't want to be notify about this. You need to review your user preferences.{% endtrans %}</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters