def listAllPassengers(): qry = Person.query().filter(Person.state.IN([21, 22, 23])) if qry.get() is None: return _("No passangers found") else: #qry = qry.order(-Person.last_mod) text = "" for p in qry: text = text + p.name.encode('utf-8') + _(' ') + p.location + " (" + str(p.state) + ") " + time_util.get_time_string(p.last_seen) + _("\n") return text
def listAllDrivers(): qry = Person.query().filter(Person.state.IN([30, 31, 32, 33])) if qry.get() is None: return "No drivers found" else: #qry = qry.order(-Person.last_mod) text = "" for d in qry: text = text + d.name.encode('utf-8') + _(' ') + d.location + _(" (") + str(d.state) + \ _(") ") + time_util.get_time_string(d.last_seen) + _("\n") return text