Skip to content

Commit 43953e3

Browse files
authored
Fix issues in meeting notes template (#986)
Signed-off-by: John Mertic <[email protected]>
1 parent 5622c14 commit 43953e3

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

meetings/template.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ title: "{{ "now" | date: "%Y-%m-%d" }}"
1414

1515
# {{ site.foundation_name }} Technical Advisory Council (TAC) Meeting - {{ "now" | date: "%B %e, %Y" }}
1616

17-
{% if site.tac_lfx_meeting_url -%}
17+
{%- if site.tac_lfx_meeting_url %}
18+
1819
Join the meeting at [{{ site.tac_lfx_meeting_url }}]({{ site.tac_lfx_meeting_url }})
1920
{%- endif %}
2021

@@ -40,13 +41,15 @@ Join the meeting at [{{ site.tac_lfx_meeting_url }}]({{ site.tac_lfx_meeting_url
4041
{%- endif -%}
4142
{% endfor %}
4243

43-
{% if site.vote_of_tac_committee_title -%}
44+
{%- if site.vote_of_tac_committee_title %}
45+
4446
### {{ site.vote_of_tac_committee_title }}
4547
{% for member in site.data.tacmembers -%}
4648
{% if member["Appointed By"] == "Vote of TAC Committee" %}
4749
- [ ] {{ member["Full Name"] }} - {{ member["Account Name: Account Name"] }}
4850
{%- endif -%}
4951
{% endfor %}
52+
5053
{%- endif %}
5154

5255
## Non-Voting Attendees
@@ -100,12 +103,17 @@ the Linux Foundation.
100103
{%- if agendaitem.meeting_label == "4-tac-meeting-short" %}
101104
- {{ agendaitem.title }} [#{{ agendaitem.number }}]({{ agendaitem.url }})
102105
{%- endif -%}
103-
{% endfor %}
104-
{% for agendaitem in agendaitems -%}
105-
{%- if agendaitem.meeting_label != "4-tac-meeting-short" -%}
106+
{% endfor -%}
107+
{% for agendaitem in agendaitems %}
108+
{%- if agendaitem.meeting_label contains "2-annual-review" %}
109+
- Annual Review: {{ agendaitem.title }} [#{{ agendaitem.number }}]({{ agendaitem.url }})
110+
{%- elsif agendaitem.meeting_label contains "1-new-project-wg" %}
111+
- New Project/Working Group Proposal: {{ agendaitem.title }} [#{{ agendaitem.number }}]({{ agendaitem.url }})
112+
{%- elsif agendaitem.meeting_label != "4-tac-meeting-short" %}
106113
- {{ agendaitem.title }} [#{{ agendaitem.number }}]({{ agendaitem.url }})
107-
{%- endif %}
114+
{%- endif -%}
108115
{% endfor %}
116+
109117
## Notes
110118

111119

0 commit comments

Comments
 (0)