static url fix

This commit is contained in:
2026-04-08 22:28:49 +02:00
parent 6bd9119093
commit 3683b811df
14 changed files with 71 additions and 37 deletions

View File

@@ -88,7 +88,7 @@
<img
class="pic-with-border"
src="{{STATIC_URL}}/img/scoreSheet.jpg"
src="{{STATIC_URL}}img/scoreSheet.jpg"
/>
<ul class="sidebar_menu">

View File

@@ -1,13 +1,13 @@
{% extends "website/base.html" %} {% load sekizai_tags static %} {% block content %} {% addtoblock "js" strip %}
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
{% endaddtoblock %} {% addtoblock "js" strip %}
<script src="{{STATIC_URL}}/js/List.js"></script>
<script src="{{STATIC_URL}}js/List.js"></script>
{% endaddtoblock %} {% addtoblock "js" strip %}
<script src="{{STATIC_URL}}/js/List.pagination.js"></script>
<script src="{{STATIC_URL}}js/List.pagination.js"></script>
{% endaddtoblock %} {% addtoblock "css" strip %}
<link
rel="stylesheet"
href="{{STATIC_URL}}/css/jquery-ui-1.8.21.custom.css"
href="{{STATIC_URL}}css/jquery-ui-1.8.21.custom.css"
type="text/css"
media="screen"
/>
@@ -230,7 +230,7 @@
{% for piece in allPieces %}
<li data-pieceid="{{piece.pk}}"{% if piece.repertoire_nr %} class="in-repertoire"{% endif %}>
<p class="item">
<img src="{{STATIC_URL}}/img/score-icon.png" />
<img src="{{STATIC_URL}}img/score-icon.png" />
<span class="title"> {{ piece.title }} </span>
<br />
<span class="composer">{{ piece.composer}} </span>
@@ -256,7 +256,7 @@
{% for piece in repertoire %}
<li data-pieceid="{{piece.pk}}">
<p class="item">
<img src="{{STATIC_URL}}/img/score-icon.png" />
<img src="{{STATIC_URL}}img/score-icon.png" />
<span class="title"> {{ piece.title }} </span>
<br />

View File

@@ -72,7 +72,7 @@
}
#section2 {
background: url("{{STATIC_URL}}/img/backgrounds/aqua.jpg") no-repeat scroll 0% 0% / cover transparent;
background: url("{{STATIC_URL}}img/backgrounds/aqua.jpg") no-repeat scroll 0% 0% / cover transparent;
display: block;
padding-top:50px;
padding-bottom:20px;