Working on player-settings update

This commit is contained in:
Chris Wilson
2020-12-03 18:27:32 -05:00
parent ccdc8cefe4
commit da6c44a1cf
11 changed files with 2716 additions and 1815 deletions

View File

@@ -85,10 +85,15 @@ def tutorial(lang='en'):
@app.route('/player-settings')
def player_settings():
def player_settings_simple():
return render_template("playerSettings.html")
@app.route('/weighted-settings')
def player_settings():
return render_template("weightedSettings.html")
@app.route('/seed/<suuid:seed>')
def viewSeed(seed: UUID):
seed = Seed.get(id=seed)
@@ -148,4 +153,4 @@ def favicon():
from WebHostLib.customserver import run_server_process
from . import tracker, upload, landing, check, generate, downloads, api # to trigger app routing picking up on it
app.register_blueprint(api.api_endpoints)
app.register_blueprint(api.api_endpoints)