Skip to content

Commit

Permalink
more url_for fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Nov 8, 2024
1 parent e06ab6d commit 5ace106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<script src="{{ url_for('static', path='/js/auth.js') }}"></script>
{# Load Custom Functions #}
{% block custom_functions_code %}
<script src="xlwings/custom-functions-code" defer></script>
<script src="{{ url_for('custom_functions_code') }}" defer></script>
{% endblock custom_functions_code %}
{# Bootstrap with the xlwings theme #}
{% if settings.enable_bootstrap %}
Expand All @@ -69,7 +69,7 @@
{# Own #}
<link rel="stylesheet" href="{{ url_for('static', path='/css/core.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', path='/css/style.css') }}" />
<script src="{{ settings.app_path }}/xlwings/custom-scripts-sheet-buttons" defer></script>
<script src="{{ url_for('custom_scripts_sheet_buttons') }}" defer></script>
<script src="{{ url_for('static', path='/js/core/sheet-buttons.js') }}" defer></script>
<script src="{{ url_for('static', path='/js/main.js') }}" defer></script>
<script src="{{ url_for('static', path='/js/ribbon.js') }}" defer></script>
Expand Down

0 comments on commit 5ace106

Please sign in to comment.