diff --git a/web/app.py b/web/app.py index 0ef6229..acdf077 100644 --- a/web/app.py +++ b/web/app.py @@ -17,7 +17,7 @@ def commify(number): @app.route("/togglepause") def pause(): # Flip our state - app.session.pause_flag = not app.session.pause_flag + app.session.is_paused = not app.session.is_paused return redirect('/') diff --git a/web/templates/base.html b/web/templates/base.html index f38c793..596cdcf 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -4,7 +4,7 @@ Sulley Fuzz Control - + {% block body %} {% endblock %} diff --git a/web/templates/view_crash.html b/web/templates/view_crash.html index 2432342..34cab16 100644 --- a/web/templates/view_crash.html +++ b/web/templates/view_crash.html @@ -1,4 +1,4 @@ -{% extends base.html %} +{% extends "base.html" %} {% block body %}
@@ -12,9 +12,7 @@
-
-                {{ crashinfo }}
-              
+
{{ crashinfo }}