review/templates/pieces/signoff.html @ bdfacbcf700e
default tip
Friendlier patch urls & mimetype
Replace /changeset/<revset>/patch/ by /changeset/<revset>.patch and set
the mimetype to text/x-diff.
This helps the browser opening the right application thanks to the
mimetype, and the application to better guess the file type thanks
to the '.patch' extension
author |
Christophe de Vienne <christophe@cdevienne.info> |
date |
Fri, 19 Aug 2016 18:58:14 +0200 |
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>