12 lines
233 B
HTML
12 lines
233 B
HTML
{% 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 %}
|