You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
290 B
Python

from flask import Blueprint, render_template, request
from . import events
bp = Blueprint("bowl", __name__)
@bp.route("/")
def bowl():
handle = request.values.get('handle','')
if handle != '':
return render_template('handle.html')
return render_template("bowl.html")