Updated title

This commit is contained in:
2019-07-11 22:23:41 +02:00
parent f2079f11df
commit 49d865a65f
2 changed files with 2 additions and 2 deletions

2
app.py
View File

@@ -15,7 +15,7 @@ def root():
nrides = fn.COUNT(Rides.date).alias('amount')
amounts = Rides.select(Rides.name, nrides).group_by(Rides.name).order_by(nrides.desc())
return render_template('list.html', title="hello", persons=amounts)
return render_template('list.html', persons=amounts)
@app.route('/add', methods=["POST"])

View File

@@ -5,7 +5,7 @@
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ title }}</title>
<title>Wie Rijd Er</title>
<link rel="stylesheet" href="/static/bootstrap-4.3.1-dist/css/bootstrap.min.css">
<script src="/static/jquery-3.4.1/js/jquery-3.4.1.min.js"></script>
<script src="/static/bootstrap-4.3.1-dist/js/bootstrap.bundle.js"></script>