12 lines
220 B
Python
12 lines
220 B
Python
#!/usr/bin/python3
|
|
|
|
from main import *
|
|
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
sheets = returnSheets('test')
|
|
return render_template("sheet.html", sheets=sheets)
|