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
16 lines
386 B
ReStructuredText
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 %} |