OSDN Git Service

Change UserInterface and File Manipulation API
[eos/base.git] / zephyr / client / app / directive / my-directory / my-directory.html
1 <div class="row">
2     <div class="table-responsive">
3         <table class="table table-hover">
4             <thead>
5                 <tr>
6                     <th class="col-md-5">Name</th>
7                     <th class="col-md-2">Size</th>
8                     <th class="col-md-5">Accessed Time</th>
9                 </tr>
10             </thead>
11             <tbody>
12                 <tr ng-repeat="row in tableRows">
13                     <td>{{row.name}}</td>
14                     <td>{{row.size}}</td>
15                     <td>{{row.atime}}</td>
16                 </tr>
17             </tbody>
18         </table>
19     </div>
20 </div>