File tree Expand file tree Collapse file tree 4 files changed +13
-19
lines changed
frontend/stylesheets/pages Expand file tree Collapse file tree 4 files changed +13
-19
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ def get_fid_cm_count(member_id):
87
87
],
88
88
'social_events' : '' ,
89
89
'freshman_project' : "Pending" ,
90
- 'comments ' : 'Does not have account yet' ,
90
+ 'ldap_account ' : False ,
91
91
'status' : "Pending"
92
92
}
93
93
ie_members .append (freshman )
@@ -137,7 +137,7 @@ def get_fid_cm_count(member_id):
137
137
],
138
138
'social_events' : freshman_data .social_events ,
139
139
'freshman_project' : freshman_data .freshman_project ,
140
- 'comments ' : freshman_data . other_notes ,
140
+ 'ldap_account ' : True ,
141
141
'status' : freshman_data .freshman_eval_result
142
142
}
143
143
ie_members .append (member )
Original file line number Diff line number Diff line change 20
20
</ div >
21
21
< div class ="col-sm-5 col-md-4 col-lg-5 ">
22
22
< h4 class ="eval-name "> {{m['name']}}</ h4 >
23
- < h6 class ="eval-uid "> {{m['uid']}}</ h6 >
23
+ {% if not m['ldap_account'] %}
24
+ < span class ="label label-default "> Internal Account: {{m['uid']}}</ span >
25
+ {% else %}
26
+ < h6 class ="eval-uid "> {{ m['uid'] }}</ h6 >
27
+ {% endif %}
28
+
24
29
</ div >
25
30
<!---->
26
31
< div class ="col-sm-5 col-md-6 col-lg-5 vcenter ">
@@ -63,11 +68,9 @@ <h6 class="eval-uid">{{m['uid']}}</h6>
63
68
</ div >
64
69
</ div >
65
70
</ div >
66
- < div class ="row ">
67
-
71
+ {% if m['house_meetings_missed']|length != 0 or m['technical_seminars']|length != 0 %}
68
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 >
69
-
70
- </ div >
73
+ {% endif %}
71
74
< div class ="collapse " id ="evalsCollapse-{{m['uid']}} ">
72
75
{% if m['house_meetings_missed']|length > 0 %}
73
76
<!-- VV only display if missing house meetings VV -->
@@ -93,7 +96,7 @@ <h4>Missed House Meetings</h4>
93
96
</ table >
94
97
{% endif %}
95
98
<!-- ^^ HOUSE MEETINGS TABLE -->
96
- {% if True or m['technical_seminars']|length > 0 %}
99
+ {% if m['technical_seminars']|length > 0 %}
97
100
98
101
< h4 > Technical Seminars</ h4 >
99
102
< table class ="table ">
@@ -110,10 +113,6 @@ <h4>Technical Seminars</h4>
110
113
< h4 > Social Events</ h4 >
111
114
< p > {{m['social_events']}}</ p >
112
115
{% endif %}
113
-
114
-
115
- < h4 > Other Notes</ h4 >
116
- < p > {{m['comments']}}</ p >
117
116
</ div >
118
117
</ div >
119
118
Original file line number Diff line number Diff line change @@ -55,13 +55,7 @@ <h6 class="eval-uid">{{m['uid']}}</h6>
55
55
</ div >
56
56
57
57
{% if m['house_meetings_missed']|length > 0 or m['major_projects_len'] > 0 %}
58
- < div class ="row ">
59
- < div class ="col-xs-12 col-sm-12 col-md-12 ">
60
-
61
58
< 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 >
62
-
63
- </ div >
64
- </ div >
65
59
{% endif %}
66
60
< div class ="collapse " id ="evalsCollapse{{m['uid']}} ">
67
61
{% if m['house_meetings_missed']|length > 0 %}
Original file line number Diff line number Diff line change 18
18
}
19
19
20
20
.eval-panel {
21
- padding : 25px 20px 10 px ;
21
+ padding : 25px 20px ;
22
22
}
23
23
24
24
.col-sm-2 {
49
49
border : 0 ;
50
50
background : transparent ;
51
51
width : 100% ;
52
+ height : 0 ;
52
53
text-align : center ;
53
54
}
54
55
}
You can’t perform that action at this time.
0 commit comments