feat: switch from Quart to FastAPI part I

This commit is contained in:
Stefan Stammberger
2021-08-22 20:07:24 +02:00
parent fc68e0a6da
commit 938fc54af3
12 changed files with 245 additions and 114 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
<html lang="en">
<head>
{% for url in g.VENDORED_CSS %}
{% for url in VENDORED_CSS %}
<link rel="stylesheet" type="text/css" href="{{ url }}" />
{% endfor %}
<!---->
@@ -184,7 +184,7 @@
{% block vue_templates %}{% endblock %}
<!---->
{% for url in g.VENDORED_JS %}
{% for url in VENDORED_JS %}
<script src="{{ url }}"></script>
{% endfor %}
<!---->
+2 -2
View File
@@ -2,7 +2,7 @@
<html lang="en">
<head>
{% for url in g.VENDORED_CSS %}
{% for url in VENDORED_CSS %}
<link rel="stylesheet" type="text/css" href="{{ url }}" />
{% endfor %}
<style>
@@ -33,7 +33,7 @@
</q-page-container>
</q-layout>
{% for url in g.VENDORED_JS %}
{% for url in VENDORED_JS %}
<script src="{{ url }}"></script>
{% endfor %}
<!---->