Example #1
0
def formRadioactivity():
    global questions
    questions = generateQuestions("radioactivity")
    return render_template("form.html", questions=questions)
Example #2
0
def formMagnetism():
    global questions
    questions = generateQuestions("magnetism")
    return render_template("form.html", questions=questions)
Example #3
0
def formStates():
    global questions
    questions = generateQuestions("states")
    return render_template("form.html", questions=questions)
Example #4
0
def formEnergy():
    global questions
    questions = generateQuestions("energy")
    return render_template("form.html", questions=questions)
Example #5
0
def formElectricity():
    global questions
    questions = generateQuestions("electricity")
    return render_template("form.html", questions=questions)
Example #6
0
def formAll():
    global questions
    questions = generateQuestions("all")
    return render_template("form.html", questions=questions)