From 5099f43c423909e257f601186b0f6697f9d4a928 Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff
Date: Mon, 4 Jan 2016 09:54:12 +0100
Subject: [PATCH] only show platforms with counts > 0
---
view/templates/admin_federation.tpl | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/view/templates/admin_federation.tpl b/view/templates/admin_federation.tpl
index 2cc12ad0ae..cd452c666d 100644
--- a/view/templates/admin_federation.tpl
+++ b/view/templates/admin_federation.tpl
@@ -9,7 +9,9 @@
{{$legendtext}}
{{foreach $counts as $c}}
+ {{if $c[0]['count(*)'] > 0}}
- {{$c[0]['platform']}} ({{$c[0]['count(*)']}})
+ {{/if}}
{{/foreach}}
@@ -30,6 +32,7 @@ document.getElementById('FederationLegend').innerHTML = myDoughnutChart.generate
{{foreach $counts as $c}}
+{{if $c[0]['count(*)'] > 0}}
{{$c[0]['platform']}} |
{{$c[0]['count(*)']}}
@@ -56,5 +59,6 @@ var my{{$c[2]}}DoughnutChart = new Chart(ctx).Doughnut({{$c[2]}}data,
|
+{{/if}}
{{/foreach}}