By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 commit.html

View raw Download
text/html • 533 B
HTML document, ASCII text
        
            
1
{% extends "mail.html" %}
2
{% block content %}
3
<h1>{% trans repo=repo.route, commit=commit.mess %}New commit in {{ repo }}{% endtrans %}</h1>
4
<p>
5
{% trans %}Commited by{% endtrans} <a href="/{{ commit.owner.username }}">{{ commit.owner.username }}</a>
6
</p>
7
<h2>
8
<a href="{{ repo + '/commit/' + commit.sha }}">
9
{{ commit.message | split("\n\n", 1) | first | markdown }}
10
</a>
11
</h2>
12
<p>
13
{{ commit.message | split("\n\n", 1) | last | markdown }}
14
</p>
15
{% endblock %}
16