File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ def get_fid_cm_count(member_id):
87
87
],
88
88
'social_events' : '' ,
89
89
'freshman_project' : "Pending" ,
90
+ 'comments' : "" ,
90
91
'ldap_account' : False ,
91
92
'status' : "Pending"
92
93
}
@@ -137,6 +138,7 @@ def get_fid_cm_count(member_id):
137
138
],
138
139
'social_events' : freshman_data .social_events ,
139
140
'freshman_project' : freshman_data .freshman_project ,
141
+ 'comments' : freshman_data .other_notes ,
140
142
'ldap_account' : True ,
141
143
'status' : freshman_data .freshman_eval_result
142
144
}
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ <h6 class="eval-uid">{{ m['uid'] }}</h6>
68
68
</ div >
69
69
</ div >
70
70
</ div >
71
- {% if m['house_meetings_missed']|length != 0 or m['technical_seminars']|length != 0 %}
71
+ {% if m['house_meetings_missed']|length != 0 or m['technical_seminars']|length != 0 or m['comments'] != "" %}
72
72
< button class ="btn-expand-panel " role ="button " data-toggle ="collapse " href ="#evalsCollapse-{{m['uid']}} " aria-expanded ="false " aria-controls ="evalsCollapse-{{m['uid']}} "> < span class ="glyphicon glyphicon glyphicon-menu-down "> </ span > </ button >
73
73
{% endif %}
74
74
< div class ="collapse " id ="evalsCollapse-{{m['uid']}} ">
@@ -108,11 +108,18 @@ <h4>Technical Seminars</h4>
108
108
{% endfor %}
109
109
</ tbody >
110
110
</ table >
111
- {% endif %} {% if m['social_events'] != "" %}
111
+ {% endif %}
112
+ {% if m['social_events'] != "" %}
112
113
113
114
< h4 > Social Events</ h4 >
114
115
< p > {{m['social_events']}}</ p >
115
116
{% endif %}
117
+
118
+ {% if m['comments'] != "" %}
119
+
120
+ < h4 > Other Comments</ h4 >
121
+ < p > {{m['comments']}}</ p >
122
+ {% endif %}
116
123
</ div >
117
124
</ div >
118
125
You can’t perform that action at this time.
0 commit comments