diff --git a/nsupdate/main/templates/main/overview.html b/nsupdate/main/templates/main/host_overview.html similarity index 100% rename from nsupdate/main/templates/main/overview.html rename to nsupdate/main/templates/main/host_overview.html diff --git a/nsupdate/main/views.py b/nsupdate/main/views.py index 5560e3f..45895d6 100644 --- a/nsupdate/main/views.py +++ b/nsupdate/main/views.py @@ -175,7 +175,7 @@ class JsUpdateView(TemplateView): class OverviewView(CreateView): model = Host - template_name = "main/overview.html" + template_name = "main/host_overview.html" form_class = CreateHostForm @method_decorator(login_required)