explorer.dust.html 512 B

1234567891011121314151617181920212223242526
  1. <table class="table">
  2. <thead>
  3. <tr>
  4. <th>Permission</th>
  5. <th>Owner</th>
  6. <th>Group</th>
  7. <th>Size</th>
  8. <th>Replication</th>
  9. <th>Block Size</th>
  10. <th>Name</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. {#FileStatus}
  15. <tr>
  16. <td>{#helper_to_permission/}</td>
  17. <td>{owner}</td>
  18. <td>{group}</td>
  19. <td>{length|fmt_bytes}</td>
  20. <td>{replication}</td>
  21. <td>{blockSize|fmt_bytes}</td>
  22. <td><a style="cursor:pointer" inode-type="{type}" class="explorer-browse-links" inode-path="{pathSuffix}">{pathSuffix}</a></td>
  23. </tr>
  24. {/FileStatus}
  25. </tbody>
  26. </table>