We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e63cbd commit b9032b6Copy full SHA for b9032b6
packet/routes/shared.py
@@ -40,4 +40,7 @@ def packets(info=None):
40
for sig in filter(lambda sig: sig.freshman_username == info["uid"], packet.fresh_signatures):
41
packet.did_sign = sig.signed
42
43
+ packets.sort(key=lambda x: sum(x.signatures_received().values()), reverse=True)
44
+ packets.sort(key=lambda x: x.did_sign, reverse=True)
45
+
46
return render_template("active_packets.html", info=info, packets=packets)
packet/static/js/signing.js
@@ -22,8 +22,9 @@ $(document).ready(function () {
22
});
23
}
24
25
+ location.reload();
26
27
28
29
-});
30
+});
0 commit comments