Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions volley/templates/base.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8"/>
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/>
<title>Volley | Game Tracker</title>
<link rel="shortcut icon" href="{{ request.static_url('volley:static/volley-16x16.png') }}">
<link rel="shortcut icon" href="{{ request.static_url('volley:static/volley-16x16.png',_scheme='https') }}">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.3.1/dist/semantic.min.css">
{% endblock %}
</head>
Expand All @@ -22,7 +22,7 @@

<a class="header item" href="/">
<div>
<img src="{{ request.static_url('volley:static/volley.png') }}" height="32" width="32"
<img src="{{ request.static_url('volley:static/volley.png',_scheme='https') }}" height="32" width="32"
alt="Volley | Game Tracker"/>
Volley
</div>
Expand Down
2 changes: 1 addition & 1 deletion volley/templates/match_submit.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@
</div>
</form>

<script src="{{ request.static_url('volley:static/match_submit.js') }}"></script>
<script src="{{ request.static_url('volley:static/match_submit.js',_scheme='https') }}"></script>
4 changes: 2 additions & 2 deletions volley/templates/match_table.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
</tfoot>
</table>

<script src="{{ request.static_url('volley:static/paginathing.js') }}"></script>
<script src="{{ request.static_url('volley:static/match_table.js') }}"></script>
<script src="{{ request.static_url('volley:static/paginathing.js',_scheme='https') }}"></script>
<script src="{{ request.static_url('volley:static/match_table.js',_scheme='https') }}"></script>
4 changes: 2 additions & 2 deletions volley/templates/player_table.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
</tbody>
</table>

<script src="{{ request.static_url('volley:static/jquery.tablesort.min.js') }}"></script>
<script src="{{ request.static_url('volley:static/jquery.tablesort.min.js',_scheme='https') }}"></script>
<script src="https://cdn.jsdelivr.net/npm/d3@5.5.0/dist/d3.min.js"></script>
<script src="{{ request.static_url('volley:static/player_table.js') }}"></script>
<script src="{{ request.static_url('volley:static/player_table.js',_scheme='https') }}"></script>
<script>
var data = [
{% for p in players %}
Expand Down
8 changes: 4 additions & 4 deletions volley/templates/playerpage.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@
</div>

<script src="https://cdn.jsdelivr.net/npm/d3@5.5.0/dist/d3.min.js"></script>
<script src="{{ request.static_url('volley:static/winchance_player_graph.js') }}"></script>
<script src="{{ request.static_url('volley:static/skillgraph.js') }}"></script>
<script src="{{ request.static_url('volley:static/winchance_player_graph.js',_scheme='https') }}"></script>
<script src="{{ request.static_url('volley:static/skillgraph.js',_scheme='https') }}"></script>
<script>
winchance_connectivity_data = [
{{ connectivity_data(team_connectivity) }}
Expand Down Expand Up @@ -144,8 +144,8 @@
skillgraph('#skillgraph', skillgraph_data);
</script>

<link rel="stylesheet" href="{{ request.static_url('volley:static/winchance_player_graph.css') }}">
<link rel="stylesheet" href="{{ request.static_url('volley:static/skillgraph.css') }}">
<link rel="stylesheet" href="{{ request.static_url('volley:static/winchance_player_graph.css',_scheme='https') }}">
<link rel="stylesheet" href="{{ request.static_url('volley:static/skillgraph.css',_scheme='https') }}">


{% endblock %}