I am new using Django and I am having difficulties being able to implement javascript into my html file.
<head>
<title>Home Page</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% load staticfiles %}
<link rel="stylesheet" href="{% static personal/css/bootstrap.min.css'%}" type = "text/css"/>
<link rel="stylesheet" href="{% static 'personal/customcss/custom.css' %}" type="text/css" />
<script src="{% static 'personal/jquery/jquery-3.2.1.min' %}" type="text/javascript"></script>
<script src="{% static 'personal/js/bootstrap.min.js' %}" type="text/javascript"></script>
</head>
All my files are on the static folder. The CSS is working fine but whenever I try to use javascript for a button, it isn't working.
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbar2SupportedContent" aria-controls="navbar2SupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button>
Thanks in advance.