summaryrefslogtreecommitdiff
path: root/templates/city.md.erb
blob: 7ee5ff00c9a9bf940762974643fce14c3362d530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Calgary (YYC)

| Sector | Name | Total | Male | Female | Non-binary | Dogs | Cats |
| ------ | ---- | ----- | ---- | ------ | ---------- | ---- | ---- |
<%- self.sort.each do |community| -%>
| [<%= community[:sector] %>][<%= community[:sector].parameterize %>] | [<%= community.name %>][<%= community.name.parameterize %>] | <%= community[:res_cnt] %> | <%= community[:male_cnt] %> (<%= community.percent(:male_cnt) %>%) | <%= community[:female_cnt] %> (<%= community.percent(:female_cnt) %>%) | <%= community[:other_cnt] %> (<%= community.percent(:other_cnt) %>%) | <%= community[:dog_cnt] %> | <%= community[:cat_cnt] %> |
<%- end -%>

<%- self.sectors.each do |sector| -%>
[<%= sector.parameterize %>]: ./<%= sector.parameterize %>/README.md
<%- end -%>
<%- self.sort.each do |community| -%>
[<%= community.name.parameterize %>]: ./<%= community[:sector].parameterize %>/<%= community.name.parameterize %>/README.md
<%- end -%>