blob: 3a9cdf0f09f4ffa33078eb45d10192e41e5044a2 [file] [log] [blame]
Milo Lin26b2cbb2022-03-26 17:35:20 -07001<div class="header">
2 <h2>Shift Schedule</h2>
3</div>
4
5<div class="container-fluid">
6 <div class="row">
7 <div *ngFor="let num of numMatches">
8 <span class="badge bg-secondary rounded-left">
9 Scouting matches from {{num-19}} to {{num}}
10 </span>
11 <div class="list-group list-group-horizontal-sm">
12 <div class="redColumn">
13 <div *ngFor="let allianceNum of [1, 2, 3]">
14 <input
15 class="red text-center text-white fw-bold list-group-item list-group-item-action"
16 type="text"
17 />
18 </div>
19 </div>
20 <div class="blueColumn">
21 <div *ngFor="let allianceNum of [1, 2, 3]">
22 <input
23 class="blue text-center text-white fw-bold list-group-item list-group-item-action"
24 type="text"
25 />
26 </div>
27 </div>
28 </div>
29 </div>
30 </div>
31 <button class="btn btn-primary">Save</button>
32 <span class="error_message" role="alert">{{ errorMessage }}</span>
33</div>