I am getting an error in the second line of the code showing unexpected token... I have also added bootstrap4 in installed apps

The page after running python manage.py runserver

{% load bootstrap4 %}

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1,
     shrink-to-fit=no">
    <title>Learning Log</title>
    {% bootstrap_css %}
    {% bootstrap_javascript jquery='full' %}
</head>

I have aslo added bootstrap4 in installed apps in settings .py

INSTALLED_APPS = [
# My apps
"learning_logs",
"users",

# Third party apps.
"bootstrap4",
Back to Top