-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
fifthaccess
committed
May 17, 2022
1 parent
e329628
commit 1e7f617
Showing
10 changed files
with
227 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"python.linting.pylamaEnabled": true, | ||
"python.linting.enabled": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
from operator import index | ||
from flask import Flask | ||
from flask.templating import render_template | ||
from flask import Blueprint | ||
import sqlalchemy | ||
from model.models import db,Kuenstler | ||
|
||
index_blueprint = Blueprint('index_blueprint',__name__) | ||
|
||
index_blueprint = Blueprint('index_blueprint', __name__) | ||
|
||
|
||
@index_blueprint.route("/") | ||
def index(): | ||
|
||
return render_template("index.html", headline="Übersicht")#, form = addItemFormObject, items = items) | ||
# , form = addItemFormObject, items = items) | ||
return render_template("index.html", headline="Übersicht") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.