|
@@ -14,7 +14,7 @@ db = SQLAlchemy(app)
|
|
|
|
|
|
|
|
|
|
def show_participants():
|
|
def show_participants():
|
|
- for p in Participant.query.all():
|
|
|
|
|
|
+ for p in Participant.query.order_by(Participant.id).all():
|
|
print("[{}] {}, {} ({}) is {} "
|
|
print("[{}] {}, {} ({}) is {} "
|
|
"and has UUID {} ({})".format(p.id,
|
|
"and has UUID {} ({})".format(p.id,
|
|
p.name,
|
|
p.name,
|