roundabout,
created on Tuesday, 23 April 2024, 15:24:30 (1713885870),
received on Wednesday, 31 July 2024, 06:54:46 (1722408886)
Author identity: vlad <vlad.muntoiu@gmail.com>
8e87f782c9d75817b9157ad888f713f73eb48d08
email_templates/commit.html
@@ -0,0 +1,15 @@
{% extends "mail.html" %}
{% block content %}
<h1>{% trans repo=repo.route, commit=commit.mess %}New commit in {{ repo }}{% endtrans %}</h1>
<p>
{% trans %}Commited by{% endtrans} <a href="/{{ commit.owner.username }}">{{ commit.owner.username }}</a>
</p>
<h2>
<a href="{{ repo + '/commit/' + commit.sha }}">
{{ commit.message | split("\n\n", 1) | first | markdown }}
</a>
</h2>
<p>
{{ commit.message | split("\n\n", 1) | last | markdown }}
</p>
{% endblock %}
email_templates/commit.txt
@@ -0,0 +1,9 @@
{% extends "mail.txt" %}
{% block content %}
{% trans repo=repo.route, commit=commit.mess %}# New commit in {{ repo }}{% endtrans %}
{% trans %}Commited by{% endtrans} {{ commit.owner.username }}
---------------------------------------
{{ commit.message }}