2017-10-06 21:41:59 +02:00
|
|
|
<div style="width: 1100px; margin:auto; position: relative;">
|
2017-10-03 18:30:29 +02:00
|
|
|
<h1>Übersicht über alle Spieler, Squads und Armeen</h1>
|
2017-05-11 21:46:28 +02:00
|
|
|
|
2018-07-08 13:28:21 +02:00
|
|
|
<div class="pull-left army-column">
|
2017-11-08 14:54:04 +01:00
|
|
|
<h3 class="army-head" [style.color]="fraction.COLOR_BLUFOR">{{fraction.BLUFOR}}</h3>
|
2018-07-08 13:28:21 +02:00
|
|
|
<cc-army-squad *ngFor="let squad of army[0].squads"
|
|
|
|
[squad]="squad"
|
|
|
|
squadFraction="BLUFOR"
|
|
|
|
(memberSelect)="select($event)">
|
|
|
|
</cc-army-squad>
|
2018-04-01 23:29:10 +02:00
|
|
|
<div class="member-count">Armeemitglieder: {{army[0].memberCount}}</div>
|
2017-05-11 21:46:28 +02:00
|
|
|
</div>
|
|
|
|
|
2018-07-08 13:28:21 +02:00
|
|
|
<div class="pull-right army-column">
|
2017-11-08 14:54:04 +01:00
|
|
|
<h3 class="army-head" [style.color]="fraction.COLOR_OPFOR">{{fraction.OPFOR}}</h3>
|
2018-07-08 13:28:21 +02:00
|
|
|
<cc-army-squad *ngFor="let squad of army[1].squads"
|
|
|
|
[squad]="squad"
|
|
|
|
squadFraction="OPFOR"
|
|
|
|
(memberSelect)="select($event)">
|
|
|
|
</cc-army-squad>
|
2018-04-01 23:29:10 +02:00
|
|
|
<div class="member-count">Armeemitglieder: {{army[1].memberCount}}</div>
|
2017-05-11 21:46:28 +02:00
|
|
|
</div>
|
|
|
|
</div>
|