diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index b5ffdd23285b412c270bdacbf8f4b6918b101900..0000000000000000000000000000000000000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
-    "python.pythonPath": "env\\Scripts\\python.exe"
-}
\ No newline at end of file
diff --git a/staticfiles/js/hello.js b/staticfiles/js/hello.js
new file mode 100644
index 0000000000000000000000000000000000000000..4831b6fcc716ea58035e6c3661100eb10fac6c59
--- /dev/null
+++ b/staticfiles/js/hello.js
@@ -0,0 +1 @@
+$(document).ready(alert("Hello World"))
\ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index 38150b4e97f63a1eaa4f0f3a32561a3b5a3aa656..73b1c1307ce41c87f7dedea58c70909a714ed011 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -22,5 +22,8 @@
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
     <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
     <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
+    {% block extra_scripts %}
+    {% endblock extra_scripts %}
+    
   </body>
 </html>
\ No newline at end of file
diff --git a/templates/test-page.html b/templates/test-page.html
deleted file mode 100644
index a98ddc47ea6298651bdd9b929893b51ae942cd37..0000000000000000000000000000000000000000
--- a/templates/test-page.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}Test pages{% endblock %}
-
-{% block content %}
-<h1>Hello World</h1>
-{% endblock %}
\ No newline at end of file