From cd8fba1d70fa8c7f4f39267d13b65c1bf2ab1b31 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Thu, 21 Jun 2012 16:54:49 +1200 Subject: Finalize porting built-in web app to Flask. --- libpathod/templates/log.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'libpathod/templates/log.html') diff --git a/libpathod/templates/log.html b/libpathod/templates/log.html index e8bf113a..22747e0e 100644 --- a/libpathod/templates/log.html +++ b/libpathod/templates/log.html @@ -1,4 +1,4 @@ -{% extends frame.html %} +{% extends "frame.html" %} {% block body %}
@@ -10,17 +10,19 @@ id - url + method + path {% for i in log %} {{ i["id"] }} - {{ i["request"]["full_url"] }} + {{ i["request"]["method"] }} + {{ i["request"]["path"] }} - {% end %} + {% endfor %} -{% end %} +{% endblock %} -- cgit v1.2.3