Add first generator

This commit is contained in:
2012-07-18 11:30:54 +02:00
parent d6f9dfa76d
commit 8d6918e108
5 changed files with 154 additions and 7 deletions

11
templates/generate.html Normal file
View File

@@ -0,0 +1,11 @@
{% 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 %}