Ejemplo n.º 1
0
def event(event_id):
  event = VRDB.event(event_id)
  form = VRForms.addevent(MultiDict(event))
  customers = VRDB.customers()
  attendence = VRDB.event_attendence(event_id)

  return render_template('event.html', form=form, customers=customers)
Ejemplo n.º 2
0
def list_customers():
  customers = VRDB.customers()
  return render_template('list_customers.html', customers=customers)