summaryrefslogtreecommitdiff
path: root/routes.py
blob: b38cf3c860357594427368a329e3aa80cb024e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from app import app
from flask import render_template,session

def get_alert():
    if "alert" in session:
        alert = session["alert"]
        del session["alert"]
        return f"{alert}"
    return ""

@app.route("/")
def index():
    return app.send_static_file("index.html")

@app.route("/pages/info.html")
def info():
    return render_template("info.html", alert=get_alert() )

@app.route("/pages/create.html")
def create():
    if "id" not in session:
        return "redirect = #nick"
    return render_template("create.html", alert=get_alert() )

@app.route("/pages/answer.html")
def answer():
    if "id" not in session:
        return "redirect = #nick"
    return render_template("answer.html", alert=get_alert() )

@app.route("/pages/analyse.html")
def analyse():
    if "id" not in session:
        return "redirect = #nick"
    return render_template("analyse.html", alert=get_alert() )

@app.route("/pages/moderate.html")
def moderate():
    return render_template("moderate.html", alert=get_alert() )

@app.route("/pages/nick.html")
def nick():
    return render_template("nick.html", alert=get_alert() )