From d6d3f7aebc576e9fcc445151a034f47f27259c00 Mon Sep 17 00:00:00 2001 From: Ross Mountjoy Date: Sat, 28 Mar 2020 14:07:19 -0400 Subject: [PATCH] fixed jinja2.exceptions.UndefinedError: 'GridViewApp' is undefined error --- dashmachine/templates/main/home.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashmachine/templates/main/home.html b/dashmachine/templates/main/home.html index d740df9..dbbd366 100644 --- a/dashmachine/templates/main/home.html +++ b/dashmachine/templates/main/home.html @@ -78,7 +78,7 @@ {% else %} {# otherwise, render the apps like this #} {% for app in apps %} - {{ GridViewApp(app) }} + {{ App(app) }} {% endfor %} {% endif %} {% else %}