Parent: [353354] (diff)

Child: [781fbe] (diff)

Download this file

revision.html    20 lines (19 with data), 776 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
<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"/>
Changeset <a href="${value.url()}">${h.text.truncate(value.hex(), 10)}</a>:
${h.ago(value.datetime)}<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>