Dynastie/templates/generate.html

12 lines
233 B
HTML
Raw Normal View History

2012-07-18 11:30:54 +02:00
{% extends "templates/base.html" %}
{% block content %}
{% if report|length == 0 %}
<b style="color:red">Any engine selected</b><br/><br/>
{% else %}
{% autoescape off %}
{{ report }}
{% endautoescape %}
{% endif %}
{% endblock %}