12345678910111213141516171819202122232425262728293031323334 |
- <table class="table-striped" ng-show="false">
- <thead>
- <tr>
- <th>Name</th>
- <th>Kind</th>
- <th>Date Modified</th>
- <th>Author</th>
- <th>Size</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="file in files track by $index" ng-dblclick="openNote(file)" >
- <td>{{file.path}}</td>
- <td>{{file.type}}</td>
- <td>{{file.modified_at}}</td>
- <td>{{file.author}}</td>
- <td>{{file.size}}</td>
- </tr>
- </tbody>
- </table>
- <div class="file-view">
- <ul>
- <li ng-repeat="file in files track by $index" ng-dblclick="openFile(file)" class="file-view-item">
- <div class="thumbnail" ng-show="file.type != 'Folder'">
- <img src="{{getImageURL(file.path)}}" ng-hide="isImage(file.type)">
- <img src="{{file.thumbnail}}" ng-show="isImage(file.type)">
- </div>
- <img class="notebook-thumbnail" src="content/imgs/notebook-icon.png" ng-show="file.type == 'Folder'">
- <div>{{file.title}}</div>
- </li>
- </ul>
- </div>
|