From 419adf5b6393d5d04342dc13ac0a2b0560a4f1a8 Mon Sep 17 00:00:00 2001
From: Putu Agastya <agastya.indrayana@gmail.com>
Date: Tue, 7 Apr 2020 01:37:42 +0700
Subject: [PATCH] [CHORES] Remove .vscode files

---
 .vscode/settings.json    | 3 ---
 staticfiles/js/hello.js  | 1 +
 templates/base.html      | 3 +++
 templates/test-page.html | 7 -------
 4 files changed, 4 insertions(+), 10 deletions(-)
 delete mode 100644 .vscode/settings.json
 create mode 100644 staticfiles/js/hello.js
 delete mode 100644 templates/test-page.html

diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index b5ffdd2..0000000
--- 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 0000000..4831b6f
--- /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 38150b4..73b1c13 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 a98ddc4..0000000
--- 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
-- 
GitLab