Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 30, 2021 02:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/71c847fefd5a98c4ba7c896ac79266f4 to your computer and use it in GitHub Desktop.
Save parzibyte/71c847fefd5a98c4ba7c896ac79266f4 to your computer and use it in GitHub Desktop.
@app.route("/formulario_editar_juego/<int:id>")
def editar_juego(id):
# Obtener el juego por ID
juego = controlador_juegos.obtener_juego_por_id(id)
return render_template("editar_juego.html", juego=juego)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment