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.1 kB

4 years ago
3 years ago
4 years ago
3 years ago
4 years ago
3 years ago
12345678910111213141516171819202122232425262728
  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}}/cloudbrain/{{$.task.ID}}/models?parentDir={{.ParenDir}}{{else}}{{$.RepoLink}}/cloudbrain/{{$.task.ID}}/download_model?parentDir={{.ParenDir}}&fileName={{.FileName}}&jobName={{$.task.JobName}}{{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. {{end}}