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 27b80ff commit b7ba9f0Copy full SHA for b7ba9f0
packet/templates/active_packets.html
@@ -26,7 +26,7 @@ <h3 class="page-title">Active Packets</h3>
26
<tbody>
27
{% for packet in packets %}
28
{% if packet.is_open() %}
29
- <tr>
+ <tr {% if packet.did_sign %}style="background-color: #4caf505e" {% endif %}>
30
<td>
31
<a href="/packet/{{ packet.freshman.rit_username }}">
32
<img class="eval-user-img"
@@ -41,7 +41,7 @@ <h3 class="page-title">Active Packets</h3>
41
</td>
42
{% if info.onfloor or info.realm == "csh" %}
43
<td class="sign-packet" align="right">
44
- {% if not packet_signed %}
+ {% if not packet.did_sign %}
45
<button class="btn btn-primary sign-button"
46
data-freshman_uid="{{ packet.freshman.rit_username }}"
47
data-freshman_name="{{ packet.freshman.name }}">Sign
0 commit comments