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 1.8 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>{{.CreateTime}}</td>
  40. </tr>
  41. <tr>
  42. <td> 最后更新时间 </td>
  43. <td>{{.LatestUpdateTime}}</td>
  44. </tr>
  45. </tbody>
  46. </table>
  47. {{end}}
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. {{template "base/footer" .}}