Aparece a seguinte mensagem: The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
OBS.: Essa mensagem aparece na hora que tento criar o jogo "Rayman".
from flask import Flask, render_template, request
app = Flask(__name__)
class Jogo:
def __init__(self, nome, categoria, console):
self.nome = nome
self.categoria = categoria
self.console = console
jogo1 = Jogo('Super Mario', 'Ação', 'SNES')
jogo2 = Jogo('Pokemon Gold', 'RPG', 'GBA')
jogo3 = Jogo('Mortal Kombat', 'Luta', 'SNES')
lista = [jogo1, jogo2, jogo3]
@app.route('/inicio')
def ola():
return render_template('lista.html', titulo='Jogos', jogos=lista)
@app.route('/novo')
def novo():
return render_template('novo.html', titulo= 'Novo Jogo')
@app.route('/criar', methods=['POST',])
def criar():
nome = request.form['nome']
categoria = request.form['categoria']
console = request.form['console']
jogo = Jogo(nome, categoria, console)
lista.append(jogo)
return render_template('lista.html', titulo='Jogo', jogos=lista)
app.run()