Project

General

Profile

1
<div>
2
    <h2 class="uk-h3 uk-text-primary">
3
        <span>Most recent statistics</span>
4
    </h2>
5
</div>
6
<div>
7
    <div *ngFor="let entity of allowedEntities">
8
        <div *ngIf="statisticsSum[entity].total>0 && allowedCharts[entity].length>0">
9
            <div class="uk-text-uppercase uk-text-bold uk-heading-divider">
10
                <h3>{{ entitiesMap.get(entity) }}</h3>
11
            </div>
12
            <div *ngIf="allowedCharts[entity]" class="uk-grid">
13
                <div *ngFor="let chart of allowedCharts[entity]" class="uk-width-1-2@l uk-width-1-1@m uk-first-column">
14
                    <iframe [src]=chartsUrlMap[chart] width="750" height="450"></iframe>
15
                </div>
16
            </div>
17
        </div>
18
    </div>
19
</div>
(1-1/5)