haldis/app/views/stats.py
2016-09-10 15:49:52 +02:00

8 lines
132 B
Python

from app import app
from flask import render_template
@app.route('/stats/')
def stats():
return render_template('stats.html')