[index] Add the owner of the cset in a td beetween id and description
author |
Alain Begey <alain@unlish.com> |
date |
Sat, 15 Nov 2014 20:01:13 +0100 |
parents |
638009474a3b
|
children |
66463ec963b6
|
branches/tags |
issue-93 |
files |
review/static/styles/style.less review/templates/index.html |
Changes
--- a/review/static/styles/style.less Mon Jan 23 15:01:27 2012 +0100
+++ b/review/static/styles/style.less Sat Nov 15 20:01:13 2014 +0100
@@ -263,6 +263,10 @@
overflow: hidden;
text-overflow: ellipsis;
}
+ &.user {
+ text-align: center;
+ white-space: nowrap;
+ }
&.desc {
a {
display: inline-block;
--- a/review/templates/index.html Mon Jan 23 15:01:27 2012 +0100
+++ b/review/templates/index.html Sat Nov 15 20:01:13 2014 +0100
@@ -13,6 +13,7 @@
<tr>
<td class="node"><span class="rev">{{ rev.rev() }}</span><span class="sep">:</span><span class="hash">{{ node_short }}</span></td>
+ <td class="user">{{ utils['person'](rev.user()) }}</td>
<td class="desc">
<a class="changeset-link" href="{{ link }}">{{ rev.description().splitlines()[0] }}</a>
</td>