Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JobDoesburg committed Apr 12, 2024
1 parent a42781f commit 3b981d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
15 changes: 1 addition & 14 deletions website/tosti/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,17 +282,4 @@
AGE_VERIFICATION_INSTITUTE_VALUE = "ru.nl"

YIVI_SERVER_URL = os.environ.get("YIVI_SERVER_URL")
YIVI_SERVER_TOKEN = os.environ.get("YIVI_SERVER_TOKEN")

BOOTSTRAP5 = {
"css_url": {
"url": "/static/tosti/css/bootstrap.min.css",
"integrity": "sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65",
"crossorigin": "anonymous",
},
"javascript_url": {
"url": "/static/tosti/js/bootstrap.bundle.min.js",
"integrity": "sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4",
"crossorigin": "anonymous",
},
}
YIVI_SERVER_TOKEN = os.environ.get("YIVI_SERVER_TOKEN")
5 changes: 3 additions & 2 deletions website/tosti/templates/tosti/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

<!-- Base CSS -->
{% bootstrap_css %}
<link href="{% static "tosti/css/bootstrap.min.css" %}" rel="stylesheet" type="text/css">
<link href="{% static "tosti/css/base.css" %}" rel="stylesheet" type="text/css">
<link href="{% static 'tosti/fonts/fonts.css' %}" rel="stylesheet">
{% block styles %}{% endblock %}
Expand Down Expand Up @@ -201,7 +201,8 @@ <h2>Identify yourself</h2><br>
</div>
</footer>
{% endblock %}
{% bootstrap_javascript %}

<script href="{% static "tosti/js/bootstrap.bundle.min.js" %}"></script>
{% block js %}{% endblock %}
<script>
const QR_POPUP_MODAL_ID = "qr-popup";
Expand Down

0 comments on commit 3b981d3

Please sign in to comment.