summaryrefslogtreecommitdiff
path: root/src/match_up/routes.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/match_up/routes.py')
-rw-r--r--src/match_up/routes.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/match_up/routes.py b/src/match_up/routes.py
index 95abe9e..f64eafa 100644
--- a/src/match_up/routes.py
+++ b/src/match_up/routes.py
@@ -10,13 +10,6 @@ def home():
return re.get_template("index.j2").render(url_for=url_for)
-@app.route("/time", methods=["GET"])
-def get_time():
- mins, secs = rg.timer.get()
- t = re.from_string('{% from "macros.j2" import timer %}{{timer(mins, secs)}}')
- return render_template(t, mins=mins, secs=secs)
-
-
@app.route("/control", methods=["GET"])
def get_controls():
return render_template("controls.j2", courts=rg.courts.get_courts())