Files
governance/doc/source/templates/sigs_repos_table.tmpl
Goutham Pacha Ravi 6169bfacf8 Show TC and SIG repos under reference
Doing this is useful since we lack
human-readable web pages to point to
when answering the question:
"What repositories are under
OpenStack TC's governance charter?"

Change-Id: I5672a7f0ce3de32d8fc0577fee8354552d2962ce
2024-06-18 12:13:32 -07:00

16 lines
386 B
ReStructuredText

.. -*- mode: rst -*-
.. This template renders a table showing repositories under the maintainership of OpenStack SIGs
.. list-table::
:header-rows: 1
:align: left
- * SIG
* Repositories
{%- for sig in data %}
- * {{ sig }}
* {%- for item in data[sig] %}
| `{{ item['repo'] }} <https://opendev.org/{{ item['repo'] }}>`_
{%- endfor %}
{%- endfor %}