From 62baa5f6a8cb96dae3b0ce67b013f6737ce7afbc Mon Sep 17 00:00:00 2001 From: Fabian Faessler Date: Sat, 28 Sep 2013 14:26:00 +0200 Subject: [PATCH] moved template in correct path --- .../{nsupdate/templates => main/templates/main}/overview.html | 0 nsupdate/main/views.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename nsupdate/{nsupdate/templates => main/templates/main}/overview.html (100%) diff --git a/nsupdate/nsupdate/templates/overview.html b/nsupdate/main/templates/main/overview.html similarity index 100% rename from nsupdate/nsupdate/templates/overview.html rename to nsupdate/main/templates/main/overview.html diff --git a/nsupdate/main/views.py b/nsupdate/main/views.py index 24b02bd..a651baa 100644 --- a/nsupdate/main/views.py +++ b/nsupdate/main/views.py @@ -12,7 +12,7 @@ class HomeView(TemplateView): return context class OverviewView(TemplateView): - template_name = "overview.html" + template_name = "main/overview.html" def get_context_data(self, *args, **kwargs): context = super(OverviewView, self).get_context_data(*args, **kwargs)