Skip to content

Commit

Permalink
show team members on team page
Browse files Browse the repository at this point in the history
  • Loading branch information
Big Jimmy authored and Big Jimmy committed May 24, 2024
1 parent ee9099c commit 6fddda6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion views/team.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,24 @@
{{if len .Team.Officers}}
<div class="container-fluid bg-secondary container-padded">
<div class="container container-padded">
<h2>Team Officers</h2>
<h2>Team Committee</h2>
<div class="row">
{{range .Heads}}
{{template "officer" .}}
{{end}}
{{range .Assistants}}
{{template "officer" .}}
{{end}}
</div>
{{if len .Officers}}
<br>
<h2>Team Members</h2>
<div class="row">
{{range .Officers}}
{{template "officer" .}}
{{end}}
</div>
{{end}}
</div>
</div>
{{else}}
Expand Down

0 comments on commit 6fddda6

Please sign in to comment.