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

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <table class="ui celled striped table">
  26. <tbody>
  27. <tr>
  28. <td class="four wide"> 任务名称 </td>
  29. <td>{{.JobName}}</td>
  30. </tr>
  31. <tr>
  32. <td> 镜像名称 </td>
  33. <td>{{.Image}}</td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. {{end}}
  38. </div>
  39. <div class="ui green segment">
  40. <p>任务结果:</p>
  41. {{with .result}}
  42. <table class="ui celled striped table">
  43. <tbody>
  44. <tr>
  45. <td class="four wide"> 状态 </td>
  46. <td> {{.Status}} </td>
  47. </tr>
  48. <tr>
  49. <td> 开始时间 </td>
  50. <td>{{.CreateTime}}</td>
  51. </tr>
  52. <tr>
  53. <td> 最后更新时间 </td>
  54. <td>{{.LatestUpdateTime}}</td>
  55. </tr>
  56. </tbody>
  57. </table>
  58. {{end}}
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. {{template "base/footer" .}}