fix static extensions js url.
This commit is contained in:
parent
2b38207100
commit
75047c5bc3
2 changed files with 2 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{% extends "base.html" %} {% from "macros.jinja" import window_vars with context
|
||||
%} {% block scripts %} {{ window_vars(user) }}
|
||||
<script src="/static/core/js/extensions.js"></script>
|
||||
<script src="/core/static/js/extensions.js"></script>
|
||||
{% endblock %} {% block page %}
|
||||
<div class="row q-col-gutter-md">
|
||||
<div
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
from quart import Blueprint
|
||||
|
||||
|
||||
withdraw_ext: Blueprint = Blueprint(
|
||||
"withdraw", __name__, static_folder="static", template_folder="templates", static_url_path="/static"
|
||||
)
|
||||
withdraw_ext: Blueprint = Blueprint("withdraw", __name__, static_folder="static", template_folder="templates")
|
||||
|
||||
|
||||
from .views_api import * # noqa
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue