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.

show.tmpl 2.1 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {{template "base/head" .}}
  2. <div class="repository">
  3. {{template "repo/header" .}}
  4. <div class="repository new repo ui middle very relaxed page grid">
  5. <div class="column">
  6. {{template "base/alert" .}}
  7. <h4 class="ui header" id="vertical-segment">
  8. <div class="ui breadcrumb">
  9. <a class="section" href="{{.RepoLink}}/debugjob?debugListType=all">
  10. {{.i18n.Tr "repo.cloudbrain"}}
  11. </a>
  12. <div class="divider"> / </div>
  13. <a class="section backTodeBug" href="{{.RepoLink}}/debugjob?debugListType=NPU">
  14. {{$.i18n.Tr "repo.modelarts.notebook"}}
  15. </a>
  16. <div class="divider"> / </div>
  17. {{with .task}}
  18. <div class="active section">{{.JobName}}</div>
  19. {{end}}
  20. </div>
  21. </h4>
  22. <div>
  23. <div class="ui yellow segment">
  24. {{with .task}}
  25. <p>任务名称: {{.JobName}}</p>
  26. {{end}}
  27. </div>
  28. <div class="ui green segment">
  29. <p>任务详情:</p>
  30. {{with .result}}
  31. <table class="ui celled striped table">
  32. <tbody>
  33. <tr>
  34. <td class="four wide"> 状态 </td>
  35. <td> {{.Status}} </td>
  36. </tr>
  37. <tr>
  38. <td> 镜像名称 </td>
  39. <td>{{$.task.Image}}</td>
  40. </tr>
  41. <tr>
  42. <td> 数据集下载地址 </td>
  43. <td style="max-width: 480px; word-wrap:break-word">{{$.datasetDownloadLink}}</td>
  44. </tr>
  45. <tr>
  46. <td> 开始时间 </td>
  47. <td>{{.CreateTime}}</td>
  48. </tr>
  49. <tr>
  50. <td> 最后更新时间 </td>
  51. <td>{{.LatestUpdateTime}}</td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. {{end}}
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. {{template "base/footer" .}}