Example #1
0
def details():
    if current_user.has_answered():
        return redirect(url_for('matchmate'))

    return render_template('details.html')
Example #2
0
def questions():
    if current_user.has_answered():
        return redirect(url_for('matchmate'))

    return render_template('questions.html')