view wikked/templates/circular_include_error.html @ 84:ca57fef14d04

Formatter/resolver changes: - Formatting is done after resolving. - Resolving includes passing text through the template engine. - Using Jinja2 for templating now. - Added unit tests.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 03 Apr 2013 23:30:23 -0700
parents 494f3c4660ed
children 37f426e067c4
line wrap: on
line source

<div class="wiki-error">
    <p>{{message}}</p>
    <p>Here are the URLs we followed:</p>
    <ul>
        {% for url in url_trail %}
        <li>{{url}}</li>
        {% endfor %}
    </ul>
</div>