app realization
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<h1>File List</h1>
|
||||
<table class="table table-hover" ng-if="fileList">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">File name</th>
|
||||
<th scope="col">Uploaded</th>
|
||||
<th scope="col">Size</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="file in fileList">
|
||||
<th scope="row">{{$index + 1}}</th>
|
||||
<td>{{file.fileName}}</td>
|
||||
<td>{{file.uploadTime | date:'medium' }}</td>
|
||||
<td>{{file.fileSize | filesize}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user