Connecting a github application to a django project [closed]
Hi everyone, I'm a nerd. I'm doing my project in Django in my spare time.
I want to plug a plugin into the address bar on the page, which is distributed on the githab by the open-source. It uses jquery.
I can't figure out where to stick it in the project and where to specify what to make it fun. After watching a few videos and reading a few articles, I cloned the git repository into the static folder in jango, and specified the path to it in the template. And tried the method from that 3rd party app to apply to the intuit. Started by getting an instance near which my method is written in text, started wiggling the JS code connection to the template, got rid of the errors and came to the same result.
Please help, I'm willing to call on the buzzer for money to get an answer.
{% load static %}
<!DOCTYPE html>
<html>
<script src="https://code.jquery.com/jquery-3.6.3.min.js"
integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU="
crossorigin="anonymous"></script>
<script src={% static 'gameslist/jquery/jquery.fias.min.js' %}
></script>
<input type="text">
$('text').fias({
oneString: true
});
</html>
I get this enter image description here