Based on the database layout given by the pruner. Run ./run.py -c <path to mysql.cnf> (Default config ~/.my.cnf) - Checks if objdump table exists - Added view for results per instruction - Added config file support for table details - Overview data loaded at server startup - Result type mapping configurable via config file Based on Flask and MySQLdb Change-Id: Ib49eac8f5c1e0ab23921aedb5bc53c34d0cde14d
12 lines
173 B
HTML
12 lines
173 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% if status %}
|
|
<h2>About</h2>
|
|
{{ status }}
|
|
{% else %}
|
|
<h2> Sorry, no status information.</h2>
|
|
{% endif %}
|
|
{% endblock %}
|