{% extends "admin/base_site.html" %} {% if pygments_css %} {% block extrahead %}{{ block.super }} {% endblock %} {% endif %} {% block content %}

The original markup is: {{ current_markup }}

{% if new_markup %}
{% if orig_html %}
{% trans 'original html (generated with the original markup)' %}{{ orig_html }}
{% endif %}
{% trans 'converted html (generated with the converted markup)' %} {{ converted_html }}
{% if pygmentize_diff or diff_is_the_same %}
{% trans 'html diff (without whitespace)' %} {% if diff_is_the_same %} {% trans '(Generated html code is the same. No differences found.)' %} {% else %} {{ pygmentize_diff|safe }} {% endif %}
{% endif %}
{% trans 'new markup' %}
{{ new_markup }}
{% endif %} {% include "admin/pylucid/includes/pylucid_formset.html" %}
{% if help_link %} {% endif %}
{% endblock %}