From 1db630b74a3f4c90edf7c54ca94af4c9c401ac32 Mon Sep 17 00:00:00 2001
From: Stephan Porada <sporada@uni-bielefeld.de>
Date: Tue, 9 Jul 2019 15:38:21 +0200
Subject: [PATCH] Add missing title into render_template

---
 app/auth/views.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/auth/views.py b/app/auth/views.py
index b09c1f5d..7a6a3836 100644
--- a/app/auth/views.py
+++ b/app/auth/views.py
@@ -48,7 +48,7 @@ def register():
                    'auth/email/confirm', user=user, token=token)
         flash('A confirmation email has been sent to you by email.')
         return redirect(url_for('auth.login'))
-    return render_template('auth/register.html.j2', form=form)
+    return render_template('auth/register.html.j2', form=form, title='Register')
 
 
 @auth.route('/confirm/<token>')
@@ -77,7 +77,7 @@ def before_request():
 def unconfirmed():
     if current_user.is_anonymous or current_user.confirmed:
         return redirect(url_for('main.index'))
-    return render_template('auth/unconfirmed.html.j2')
+    return render_template('auth/unconfirmed.html.j2', title='Unconfirmed')
 
 
 @auth.route('/confirm')
-- 
GitLab