diff --git a/github_app_geo_project/module/workflow/__init__.py b/github_app_geo_project/module/workflow/__init__.py index 3a1b9e4eee..82e19e0f5d 100644 --- a/github_app_geo_project/module/workflow/__init__.py +++ b/github_app_geo_project/module/workflow/__init__.py @@ -152,5 +152,5 @@ def get_transversal_dashboard( return module.TransversalDashboardOutput( renderer="github_app_geo_project:module/workflow/dashboard.html", - data={"repositories": context.status.keys()}, + data={"status": context.status}, ) diff --git a/github_app_geo_project/module/workflow/dashboard.html b/github_app_geo_project/module/workflow/dashboard.html index 25a5e8c068..57975fde9d 100644 --- a/github_app_geo_project/module/workflow/dashboard.html +++ b/github_app_geo_project/module/workflow/dashboard.html @@ -1,4 +1,4 @@ -%for repository, data_json in repositories.items(): +%for repository, data_json in status.items():

${repository}

%for branch_name, branch_values in data_json.items():