Add link to activity metrics to team pages

We are looking at removing team details from the openstack.org/software
pages, and linking to the team pages on governance.o.o/tc instead.

Add a link to team activity metrics (as displayed by Stackalytics)
to the team pages, so that people can still find that data if they care
about it.

Change-Id: I8fa5cf7e77174b9ddab2e184e839159afcec2ad4
This commit is contained in:
Thierry Carrez 2019-02-13 14:52:54 +01:00
parent 740fd6d6d2
commit 2403465ce5
1 changed files with 7 additions and 0 deletions

View File

@ -97,6 +97,13 @@ def _team_to_rst(name, info):
yield '.. extraatcstable::'
yield ' :project: %s' % name
yield ''
yield 'Activity metrics'
yield '----------------'
yield ''
url = 'https://www.stackalytics.com/' \
'?release=all&module=%s-group&metric=commits' % name
yield 'See `team activity metrics <%s>`_ at Stackalytics.' % url
yield ''
def _write_team_pages():