def index(): people = getPeople() chores = getChores() update() rotate() multiSelect() return render_template('template.html', people = people, chores = chores)
def multi(): multiSelect() return redirect(url_for('index'))
def createPairs(): rotate() multiSelect()