fix2
This commit is contained in:
parent
58ae586d7b
commit
ccdd13a188
4
app.py
4
app.py
@ -13,13 +13,13 @@ app.secret_key = hashlib.md5(os.urandom(32)).hexdigest()
|
|||||||
def parsetime(value):
|
def parsetime(value):
|
||||||
return time.strftime('%Y-%m-%d %H:%M', time.localtime(value))
|
return time.strftime('%Y-%m-%d %H:%M', time.localtime(value))
|
||||||
|
|
||||||
@app.route('/gb')
|
@app.route('/')
|
||||||
def index():
|
def index():
|
||||||
statement = 'SELECT "id", "name", "website", "comment", "date", "ip" FROM "entries" ORDER BY id DESC'
|
statement = 'SELECT "id", "name", "website", "comment", "date", "ip" FROM "entries" ORDER BY id DESC'
|
||||||
cs.execute(statement)
|
cs.execute(statement)
|
||||||
return render_template("index.html", comments=cs.fetchall())
|
return render_template("index.html", comments=cs.fetchall())
|
||||||
|
|
||||||
@app.route('/gb/submit', methods=["POST"])
|
@app.route('/submit', methods=["POST"])
|
||||||
def submit():
|
def submit():
|
||||||
errors = []
|
errors = []
|
||||||
name = request.form.get("name")
|
name = request.form.get("name")
|
||||||
|
Loading…
Reference in New Issue
Block a user