flask_bash/templates/show_entries.html

16 lines
330 B
HTML
Raw Normal View History

2016-12-23 00:41:14 -05:00
<!doctype html>
<title>vtbash</title>
{% block body %}
{% for j in i %}
2016-12-23 05:06:47 -05:00
<p id="{{ j + 1}}" style="background-color: rgba(255,102,0,.2);">
#{{ length - j }}<br>
2016-12-23 00:41:14 -05:00
{% for line in entries[j] %}
{{ line }}<br>
{% endfor %}
</p>
<br>
{% else %}
<p>Unbelievable. No Entries here so far</p>
{% endfor %}
{% endblock %}