Exemplo n.º 1
0
def match_page(key=None,operation=None,error=None):
    if request.method == 'GET':
        if request.args.get('operation') == 'delete':
            store = match_operations()
            result=store.delete_match(request.args.get('key'))
            return redirect(url_for('admin.match_page',error=result))
        else:
            store = match_operations()
            matches=store.get_matches()
            now = datetime.datetime.now()
            error = request.args.get('error')
            return render_template('admin_matches.html', matches=matches, error=error, current_time=now.ctime())
    else:
        if request.form['submit']=='cancel':
            return redirect(url_for('admin.match_page'))

        else:
            if request.form['key_value']=='':
                hometeamid = request.form['hometeamid']
                awayteamid = request.form['awayteamid']
                courtid = request.form['courtid']
                matchdate = request.form['matchdate']
                match = Match(None,hometeamid, None, awayteamid, None, courtid, None, matchdate, 0)
                store = match_operations()
                result=store.add_match(match)
                return redirect(url_for('admin.match_page', error=result))
            else:
                hometeamid = request.form['hometeamid']
                awayteamid = request.form['awayteamid']
                courtid = request.form['courtid']
                matchdate = request.form['matchdate']
                key = request.form['key_value']
                store = match_operations()
                result=store.update_match(key,hometeamid,awayteamid,courtid,matchdate)
                return redirect(url_for('admin.match_page', error=result))
Exemplo n.º 2
0
def match_edit_page(key=None):
    store = match_operations()
    storeTeam = team_operations()
    storeCourt = court_operations()

    match = store.get_match(key) if key is not None else None
    teams = storeTeam.get_teams()
    courts = storeCourt.get_courts()

    now = datetime.datetime.now()
    return render_template('match_edit.html', match=match, teams=teams, courts=courts, current_time=now.ctime())