Mercurial > wikked
view wikked/templates/diff-page.html @ 378:436f9b54d3e1
newuser: Add some explanation as to what to do with the output.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 24 Sep 2015 21:26:56 -0700 |
parents | 37f426e067c4 |
children |
line wrap: on
line source
{% extends 'index.html' %} {% block content %} <article> <header> <h1>{{meta.title}}</h1> <div class="decorator">Diff {%if disp_rev2%} <span class="rev_id">{{disp_rev1}}</span> to <span class="rev_id">{{disp_rev2}}</span> {%else%} change <span class="rev_id">{{disp_rev1}}</span> {%endif%} </div> </header> <section> <pre><code>{{diff|safe}}</code></pre> </section> </article> {% endblock %}