diff --git a/templates/base.html b/idre/templates/idre/base.html
similarity index 100%
rename from templates/base.html
rename to idre/templates/idre/base.html
diff --git a/label/templates/label/home.html b/idre/templates/idre/home.html
similarity index 100%
rename from label/templates/label/home.html
rename to idre/templates/idre/home.html
diff --git a/idre/views.py b/idre/views.py
new file mode 100644
index 0000000..cdc1c70
--- /dev/null
+++ b/idre/views.py
@@ -0,0 +1,5 @@
+from django.shortcuts import render
+
+
+def home(request):
+ return render(request, "idre/home.html")