|
12345678910111213141516171819202122232425262728 |
- {{if .Dirs}}
- <table id="repo-files-table" class="ui single line table">
- <tbody>
- {{range .Dirs}}
- <tr>
- <td class="name four wide">
- <span class="truncate">
- <span class="octicon octicon-file-directory"></span>
- <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}}">
- <span class="fitted">{{if .IsDir}} {{svg "octicon-file-directory" 16}}{{else}}{{svg "octicon-file" 16}}{{end}}</span> {{.FileName}}
- </a>
- </span>
- </td>
- <td class="message nine wide">
- <span class="truncate has-emoji">
- {{.Size | FileSize}}
- </span>
- </td>
- <td class="text right age three wide">
- <span class="time-since poping up">{{.ModTime}}</span>
- </td>
- </tr>
-
- {{end}}
- </tbody>
- </table>
-
- {{end}}
|