review/templates/pieces/signoff.html @ 676834353b0d
Categorize only the last signoff of each user.
On the index view, all the signoff of a single user (done on precursors of a
cset) were displayed in the counts.
This patch make sure only the last signoff of each user is counted, so that the
final vote on the latest version of a cset gets displayed.
author |
Christophe de Vienne <cdevienne@gmail.com> |
date |
Wed, 29 Oct 2014 14:49:08 +0100 |
parents |
0dc141617716 |
children |
(none) |
{% if signoff.style == 'markdown' %}
{% set rendered = utils['markdown'](signoff.message) %}
{% endif %}
{% if signoff.node != rev.hex() %}
{% set obsolete = True %}
{% set obsclass = ' obsolete' %}
{% endif %}
<div class="signoff group {{ signoff.opinion or 'neutral' }}{{ obsclass }}">
<div class="avatar">
<img src="{{ utils['item_gravatar'](signoff, 30) }}" />
</div>
<div class="signoff-opinion {{ signoff.opinion or "neutral" }}">{{ signoff.opinion or "meh" }}</div>
<div>
<div class="author">
<a href="mailto:{{ utils['email'](signoff.author) }}">{{ utils['templatefilters'].person(signoff.author) }}</a>
signed off as <span class="opinion">{{ signoff.opinion or "neutral" }}</span> on this changeset, saying:
</div>
{% if signoff.style == 'markdown' %}
<div class="message markdown">{{ rendered|safe }}</div>
{% else %}
<div class="message plain">{{ signoff.message }}</div>
{% endif %}
</div>
</div>