1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 15:44:19 +00:00
estus/templates/query.htm

52 lines
2 KiB
HTML
Raw Normal View History

2017-09-13 08:24:59 +00:00
{% extends 'base.htm' %}
{% block title %}Query • estus{% endblock %}
{% block content %}
<div class="alert alert-warning">
2017-09-13 08:40:28 +00:00
<b>Attenzione!</b> In questa pagina non è presente alcuna misura per prevenire SQL Injection. Eseguite le query a vostro <a href="https://xkcd.com/327/">rischio e pericolo</a>!
2017-09-13 08:24:59 +00:00
</div>
<form action="/query" method="post">
<div class="input-group">
<span class="input-group-addon">SELECT</span>
<input type="text" class="form-control" placeholder="Scrivi qui la tua query!" name="query" {% if query %}value="{{ query }}{% endif %}">
<span class="input-group-addon">;</span>
</div>
</form>
{% if result %}
<div class="panel panel-success">
<div class="panel-heading">
Risultati della query
</div>
<div class="panel-body">
<table class="table table-hover">
<thead>
<tr>
{% for row in result.keys() %}
<th>
{{ row }}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in result %}
<tr>
{% for column in row %}
<td>{{ column }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% elif error %}
<div class="panel panel-danger">
<div class="panel-heading">
Errore nell'esecuzione della query
</div>
<div class="panel-body">
{{ error }}
</div>
</div>
{% endif %}
{% endblock %}