5fe5d0a0b8
Change-Id: I5523d430d4d3eeb771da931f62cb4cc1936e313b
11 lines
378 B
Django/Jinja
11 lines
378 B
Django/Jinja
{{ election.capitalize() }} PTL Candidates
|
|
======================
|
|
{% for project in projects %}{% if project != 'TC' %}
|
|
* {{ project.replace('_', ' ') }}
|
|
|
|
{% for candidate in candidates[project] %}
|
|
* `{{ candidate.split('/')[-1][:-4].replace('_', ' ').title() }} <http://git.openstack.org/cgit/openstack/election/plain/{{ candidate }}>`_
|
|
{% endfor %}
|
|
|
|
{% endif %}{% endfor %}
|