From ba6fa531db76bb7a8683f45cf9b76fd973f4a393 Mon Sep 17 00:00:00 2001
From: PCoder <purple.coder@yahoo.co.uk>
Date: Wed, 3 Apr 2019 22:49:25 +0200
Subject: [PATCH] Correct the name of the layout

---
 hosting/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hosting/views.py b/hosting/views.py
index 17f63039..5a8f45c7 100644
--- a/hosting/views.py
+++ b/hosting/views.py
@@ -1164,7 +1164,7 @@ class InvoiceListView(LoginRequiredMixin, ListView):
 
 
 class InvoiceDetailView(LoginRequiredMixin, DetailView):
-    template_name = "hosting/invoice-detail.html"
+    template_name = "hosting/invoice_detail.html"
     context_object_name = "invoice"
     login_url = reverse_lazy('hosting:login')
     permission_required = ['view_monthlyhostingbill']