You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

dir_list.tmpl 1.2 kB

4 years ago
4 years ago
4 years ago
4 years ago
1234567891011121314151617181920212223242526272829303132333435363738
  1. {{if .Dirs}}
  2. <table id="repo-files-table" class="ui single line table">
  3. <tbody>
  4. {{range .Dirs}}
  5. <tr>
  6. <td class="name four wide">
  7. <span class="truncate">
  8. <span class="octicon octicon-file-directory"></span>
  9. <a class="title" href="{{if .IsDir}}{{$.RepoLink}}/datasets/dirs/{{$.Uuid}}?parentDir={{.ParenDir}}{{end}}">
  10. <span class="fitted">{{if .IsDir}} {{svg "octicon-file-directory" 16}}{{else}}{{svg "octicon-file" 16}}{{end}}</span> {{.FileName}}
  11. </a>
  12. </span>
  13. </td>
  14. <td class="message nine wide">
  15. <span class="truncate has-emoji">
  16. {{.Size | FileSize}}
  17. </span>
  18. </td>
  19. <td class="text right age three wide">
  20. <span class="time-since poping up">{{.ModTime}}</span>
  21. </td>
  22. </tr>
  23. {{end}}
  24. </tbody>
  25. </table>
  26. <table id="dataset-files-table" class="ui single line table">
  27. </table>
  28. <script src="{{StaticUrlPrefix}}/self/test.js"></script>
  29. <script type="text/javascript">
  30. displayDir({{$.Uuid}})
  31. </script>
  32. {{end}}