Skip to content

Commit c799850

Browse files
committed
Shift TS display into one column in Gatekeep table
1 parent 6be3864 commit c799850

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

conditional/templates/gatekeep.html

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,7 @@ <h4>Missed House Meetings</h4>
145145
<th>Name</th>
146146
<th>Result</th>
147147
<th>Directorship Meetings</th>
148-
<th>Technical Seminars - Hosted</th>
149-
<th>Technical Seminars - Attended</th>
148+
<th>Technical Seminars</th>
150149
<th>House Meetings Missed</th>
151150
</tr>
152151
</thead>
@@ -172,18 +171,13 @@ <h4>Missed House Meetings</h4>
172171
<i class="bi bi-check-circle-fill green eval-info-status"></i> {{m['committee_meetings']}} / {{ req_meetings }}
173172
{% endif %}
174173
</td>
175-
<td data-sort="{{ m['technical_seminars_hosted'] }}">
176-
{% if m['technical_seminars_hosted'] < req_seminars_hosted and m['technical_seminars'] < req_seminars %}
177-
<i class="bi bi-x-circle-fill red eval-info-status"></i> {{ m['technical_seminars_hosted'] }} / {{ req_seminars_hosted }}
178-
{% else %}
179-
<i class="bi bi-check-circle-fill green eval-info-status"></i> {{ m['technical_seminars_hosted'] }} / {{ req_seminars_hosted }}
180-
{% endif %}
181-
</td>
182174
<td data-sort="{{ m['technical_seminars'] }}">
183175
{% if m['technical_seminars'] < req_seminars and m['technical_seminars_hosted'] < req_seminars_hosted %}
184-
<i class="bi bi-x-circle-fill red eval-info-status"></i> {{ m['technical_seminars'] }} / {{ req_seminars }}
176+
<i class="bi bi-x-circle-fill red eval-info-status"></i>Hosted: {{ m['technical_seminars_hosted'] }} / {{ req_seminars_hosted }}<br>
177+
<i class="bi bi-x-circle-fill red eval-info-status"></i>Attended: {{ m['technical_seminars'] }} / {{ req_seminars }}
185178
{% else %}
186-
<i class="bi bi-check-circle-fill green eval-info-status"></i> {{ m['technical_seminars'] }} / {{ req_seminars }}
179+
<i class="bi bi-check-circle-fill green eval-info-status"></i>Hosted: {{ m['technical_seminars_hosted'] }} / {{ req_seminars_hosted }}<br>
180+
<i class="bi bi-check-circle-fill green eval-info-status"></i>Attended: {{ m['technical_seminars'] }} / {{ req_seminars }}
187181
{% endif %}
188182
</td>
189183
<td data-sort="{{ m['house_meetings_missed']|length }}">

0 commit comments

Comments
 (0)