Parent: [d5486b] (diff)

Child: [70c62e] (diff)

Download this file

revision.html    19 lines (18 with data), 766 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
<div xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:xi="http://www.w3.org/2001/XInclude"
style="background-color:#eee;border-top:1px solid #333;">
<xi:include href="${g.pyforge_templates}/lib.html"/>
<b>Commit $value.revision: ${h.text.truncate(value.hex(), 10)}: ${h.ago(value.datetime)}</b><br/>
${Markup(g.markdown.convert(value.description()))}
<p class="gravatar">
<py:if test="value.user_url is not None">
<a href="${value.user_url}">${gravatar(value.user.email)}</a><br/>
<a href="${value.user_url}">$value.user.name</a> (user)<br/>
</py:if>
<py:if test="value.user_url is None">
${gravatar(value.user.email)}<br/>
$value.user.name<br/>
</py:if>
</p>
</div>