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 %}
|