fc1015ca09e6faa47c18e4c3ef81d682adf3c5ef
[ccsdk/cds.git] /
1 <div class="center">
2     <ngx-file-drop dropZoneLabel="Drop files here" (onFileDrop)="dropped($event)"
3                    (onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)">
4         gi<ng-template ngx-file-drop-content-tmp let-openFileSelector="openFileSelector">
5             Optional custom content that replaces the the entire default content.
6             <button type="button" (click)="openFileSelector()">Browse Files</button>
7         </ng-template>
8     </ngx-file-drop>
9     <div class="upload-table">
10         <table class="table">
11             <thead>
12             <tr>
13                 <th>Name</th>
14             </tr>
15             </thead>
16             <tbody class="upload-name-style">
17             <tr *ngFor="let item of files; let i=index">
18                 <td><strong>{{ item.relativePath }}</strong></td>
19             </tr>
20             </tbody>
21         </table>
22     </div>
23 </div>