re base code
[sdc.git] / catalog-ui / src / app / ng2 / pages / automated-upgrade / automated-upgrade.component.html
1 <div class="automated-upgrade-component">
2
3     <div *ngIf="certificationStatusText" class="certification-status">
4         <svg-icon-label
5                 name="success-circle-o"
6                 mode="success"
7                 size="medium"
8                 clickable="false"
9                 disabled="false"
10                 labelPlacement="right">
11         </svg-icon-label>
12         <span class="certification-status-text">{{certificationStatusText}}</span>
13     </div>
14
15     <div>
16         <span innerHTML="{{informationText}}"> </span>
17         <div class="components-to-upgrade-list">
18             <ul>
19                 <li *ngFor="let component of componentsToUpgrade | upgradeListItemOrderBy">
20                     <upgrade-list-item (onCheckedChange)= "onComponentSelected(component.uniqueId)" [disabled]="disabled" [componentToUpgrade]="component"></upgrade-list-item>
21                 </li>
22             </ul>
23         </div>
24     </div>
25 </div>