Add admin "login" and functionality, fix Umlauts in search

This commit is contained in:
2019-05-26 00:28:26 +02:00
parent 28ff0ecf06
commit 3adea7b46a
7 changed files with 178 additions and 49 deletions

18
.vscode/launch.json vendored
View File

@ -5,8 +5,26 @@
"version": "0.2.0",
"configurations": [
{"name":"Python: Flask","type":"python","request":"launch","module":"flask","env":{"FLASK_APP":"main.py","FLASK_ENV":"development","FLASK_DEBUG":"1"},"args":["run","--no-debugger","--no-reload"],"jinja":true},
{"name":"Python: Flask (with reload)","type":"python","request":"launch","module":"flask","env":{"FLASK_APP":"main.py","FLASK_ENV":"development","FLASK_DEBUG":"1"},"args":["run","--no-debugger"],"jinja":true},
{
"name": "Python: Flask (with reload, externally reachable)",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "main.py",
"FLASK_ENV": "development",
"FLASK_DEBUG": "1"
},
"args": [
"run",
"--no-debugger",
"--host='0.0.0.0'"
],
"jinja": true
},
{
"name": "Python: Current File (Integrated Terminal)",
"type": "python",