OSDN Git Service

Modified: Upload, Command execution
[eos/zephyr.git] / front-end / dist / templates / directory.html
1 <div>
2     <h3 class="page-header">{{ctrl.info.path}}</h3>
3     <table class="table table-striped table-responsive">
4         <tr>
5             <th></th>
6             <th>name</th>
7             <th>fileId</th>
8             <th>parentId</th>
9             <th>fileType</th>
10             <th>createdAt</th>
11             <th>updatedAt</th>
12         </tr>
13         <tr ng-repeat="l in ctrl.files">
14             <td><span class="glyphicon glyphicon-folder-open" ng-show="l.fileType==='0'" aria-hidden="true"></span></td>
15             <td>{{l.name}}</td>
16             <td>{{l.fileId}}</td>
17             <td>{{l.parentId}}</td>
18             <td>{{l.fileType}}</td>
19             <td>{{l.createdAt}}</td>
20             <td>{{l.updatedAt}}</td>
21         </tr>
22     </table>
23 </div>