@@ -74,7 +74,7 @@ <h3>Remote Attendees</h3>
7474 {% assign org = person.org %}
7575 {% for org_transition in site.data.orgs %}
7676 {% if org_transition.old_org_name == org %}
77- {% assign org = org_transition.new_org_name %}
77+ {% assign prev_orgs = prev_orgs | push: org_transition.new_org_name | uniq %}
7878 {% endif %}
7979 {% endfor %}
8080 {% assign prev_orgs = prev_orgs | push: org | uniq %}
@@ -88,7 +88,7 @@ <h3>Remote Attendees</h3>
8888 {% assign org = person.org %}
8989 {% for org_transition in site.data.orgs %}
9090 {% if org_transition.old_org_name == org %}
91- {% assign org = org_transition.new_org_name %}
91+ {% assign prev_prev_orgs = prev_orgs | push: org_transition.new_org_name | uniq %}
9292 {% endif %}
9393 {% endfor %}
9494 {% assign prev_prev_orgs = prev_prev_orgs | push: org | uniq %}
@@ -128,42 +128,20 @@ <h3>Remote Attendees</h3>
128128 {% endif %}
129129 {% endfor %}
130130
131- < h3 > IMOVE Orgs ({{imove_orgs.size}} of {{ prev_ooe | times: 0.66 | ceil }} needed) </ h3 >
131+ < h3 > Voting Eligibile Orgs ({{imove_orgs.size}} of {{ prev_ooe | times: 0.66 | ceil }} needed) </ h3 >
132132 {% assign imove_orgs = imove_orgs | sort %}
133- {% for org in imove_orgs %}
134- < li > {{ org }}</ li >
135- {% endfor %}
133+ {% for org in imove_orgs %} < li > {{ org }}</ li > {% endfor %}
136134
137- < h3 > Ineligible Orgs </ h3 >
138- < h4 > Not Present at Current Meeting for First Vote </ h4 >
135+ <!-- This code is a mess because when I split it out across multiple lines, it adds a bunch of blank lines in the output -->
136+ <!-- Ineligible Orgs -->
137+ <!-- Not Present at Current Meeting for First Vote -->
139138 {% assign ooe_orgs = ooe_orgs | sort %}
140- {% for org in ooe_orgs %}
141- {% unless imove_orgs contains org %}
142- < li > {{ org }}</ li >
143- {% endunless %}
144- {% endfor %}
145- < h4 > Did Not Attend 2 of 3 Recent Meetings </ h4 >
146- {% assign ineligible_orgs = ineligible_orgs | sort %}
147- {% for org in ineligible_orgs %}
148- {% unless org == "Self (Non-voting participant)" %}
149- < li > {{ org }}</ li >
150- {% endunless %}
151- {% endfor %}
152- < h4 > Did Not Register for Current Meeting </ h4 >
153- {% for org in prev_orgs %}
154- {% unless imove_orgs contains org or ooe_orgs contains org %}
155- {% unless org == "Self (Non-voting participant)" %}
156- < li > {{ org }}</ li >
157- {% endunless %}
158- {% endunless %}
159- {% endfor %}
160- {% for org in prev_prev_orgs %}
161- {% unless imove_orgs contains org or ooe_orgs contains org or prev_orgs contains org %}
162- {% unless org == "Self (Non-voting participant)" %}
163- < li > {{ org }}</ li >
164- {% endunless %}
165- {% endunless %}
166- {% endfor %}
139+ {% for org in ooe_orgs %} {% unless imove_orgs contains org %} <!-- {{ org }} --> {% endunless %} {% endfor %}
140+ <!-- Did Not Attend 2 of 3 Recent Meetings -->
141+ {% assign ineligible_orgs = ineligible_orgs | sort %} {% for org in ineligible_orgs %} {% unless org == "Self (Non-voting participant)" %} <!-- {{ org }} --> {% endunless %} {% endfor %}
142+ <!-- Did Not Register for Current Meeting -->
143+ {% for org in prev_orgs %} {% unless imove_orgs contains org or ooe_orgs contains org %}{% unless org == "Self (Non-voting participant)" %}<!-- {{ org }} --> {% endunless %}{% endunless %}{% endfor %}
144+ {% for org in prev_prev_orgs %}{% unless imove_orgs contains org or ooe_orgs contains org or prev_orgs contains org %}{% unless org == "Self (Non-voting participant)" %}<!-- {{ org }} --> {% endunless %}{% endunless %}{% endfor %}
167145 {% endif %}
168146
169147 < h3 > Stats </ h3 >
0 commit comments