review/web_templates/index.html @ 1133505b5b04
Remove the confusing local-path functionality.
Review data is now under .hg/review.
The lpath is still available in the API in case anyone wants to
use it, but we will default to .hg/review for now.
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 02 Mar 2010 19:35:19 -0500 |
parents |
93baa16777e9 |
children |
8e18e2c40a06 |
$def with (rd, revs)
<h2>Changesets</h2>
<table>
$for ctx in revs:
$ ctx_node = ctx.node()
$ ctx_node_short = node_short(ctx_node)
$ ctx_comments = rd[ctx_node].comments
$ ctx_signoffs = rd[ctx_node].signoffs
<tr class="${ loop.parity }">
<td>${ ctx.rev() }:${ ctx_node_short }</td>
<td>
<a href="/review/${ ctx_node_short }/">${ ctx.description() }</a>
</td>
<td class="last">${ len(ctx_comments) } comments,
${ len(ctx_signoffs) } signoffs</td>
</tr>
</table>