Skip to content

Commit 6235eb3

Browse files
committed
Fixing style and presentations
1 parent a94a2e5 commit 6235eb3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

conditional/templates/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ <h3 class="panel-title">Directorship Meeting Attendance</h3>
352352
{% for meeting in cm_attendance %}
353353
<tr>
354354
<td>{{meeting['committee']}}</td>
355-
<td>{{meeting['timestamp']}}</td>
355+
<td>{{meeting['timestamp'].strftime('%Y-%m-%d')}}</td>
356356
</tr>
357357
{% endfor %}
358358
</tbody>

conditional/templates/intro_eval_slideshow.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,13 @@ <h3>{{m['technical_seminars']|length}}</h3>
4747
</div>
4848
</div>
4949
</div>
50-
<h4><span class="icon glyphicon glyphicon-{% if m['freshman_project'] == 'Passed' %}ok passed{%else%}remove{% endif %}" aria-hidden="true"></span> Freshman Project</h4>
51-
50+
51+
<h4>
52+
{% if m['freshman_project'] != 'Pending' %}
53+
<span class="icon glyphicon glyphicon-{% if m['freshman_project'] == 'Passed' %}ok passed{%else%}remove{% endif %}" aria-hidden="true"></span> Freshman Project
54+
{% endif %}
55+
</h4>
56+
5257
<div class="actions" data-uid="{{m['uid']}}" data-cn="{{m['name']}}">
5358
<button class="pass" type="button">Pass</button>
5459
<button class="fail" type="button">Fail</button>

0 commit comments

Comments
 (0)