Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <table>
  2. <tr>
  3. <th>File</th>
  4. <th>{{date | orderBy: file.fileStat}}</th>
  5. <th>Download</th>
  6. </tr>
  7. <tr ng-repeat="file in data">
  8. <td>{{file.filename}}</td>
  9. <td>{{file.fileStat |date : "dd.MM.y"}}</td>
  10. <td><button type="button" class="btn btn-primary" ng-click="downloadServerFile(file.filename)">download</button></td>
  11. </tr>
  12. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement