{% from 'jinja_master/lib.html' import email_gravatar with context %}

{% if value.author_url %} Authored by {{email_gravatar(value.authored.email, title=h.really_unicode(value.authored.name), size=16)}} {{h.really_unicode(value.authored.name)}} {% else %} Authored by {{email_gravatar(value.authored.email, title=h.really_unicode(value.authored.name), size=16)}} {{h.really_unicode(value.authored.name)}} {% endif %} {% if value.authored.date %}{{h.ago(value.authored.date)}}{% endif %} {% if value.committed.email != value.authored.email %} {% if value.committer_url %} Committed by {{email_gravatar(value.committed.email, title=h.really_unicode(value.committed.name), size=16)}} {{h.really_unicode(value.committed.name)}} {% else %} Committed by {{email_gravatar(value.committed.email, title=h.really_unicode(value.committed.name), size=16)}} {{h.really_unicode(value.committed.name)}} {% endif %} {% if value.committed.date %}{{h.ago(value.committed.date)}}{% endif %} {% endif %}

Tree

{% if prev %}

Parent(s): {% for ci in prev %}{{ci.shorthand_id()}}{% endfor %}

{% endif %} {% if next %}

Child(ren): {% for ci in next %}{{ci.shorthand_id()}}{% endfor %}

{% endif %} {{g.markdown.convert(h.really_unicode(value.message))}}