Browse Source

fix issue

tags/v1.22.12.1^2
zhoupzh 3 years ago
parent
commit
0ff6201740
1 changed files with 24 additions and 0 deletions
  1. +24
    -0
      templates/repo/grampus/notebook/show.tmpl

+ 24
- 0
templates/repo/grampus/notebook/show.tmpl View File

@@ -380,6 +380,30 @@
{{end}}
</tbody>
</table>
{{if eq .ComputeResource "NPU"}}
<thead>
<tr><th style="color: #8a8e99;font-size:12px" class="three wide left aligned">{{$.i18n.Tr "dataset.file"}}</th>
<th style="color: #8a8e99;font-size:12px"class="eleven wide">{{$.i18n.Tr "dataset.download_url"}}</th>
<th style="color: #8a8e99;font-size:12px" class="two wide center aligned">{{$.i18n.Tr "dataset.download_oper"}}</th>
</tr></thead>
<tbody>
{{range $.modelDownload}}
<tr>
<td class="dataset_nowrap_two_line">
{{if eq .IsDelete true}}
{{.Name}}({{$.i18n.Tr "dataset.file_deleted"}})
{{else}}
<a href="{{.RepositoryLink}}" target="_blank">{{.Name}}</a>
{{end}}
</td>
<td><div class="dataset_nowrap_two_line">{{. DownloadLink}}</div></td>
<td class="center aligned"><a class="ui poping up clipboard" id="clipboard-btn-dataset" data-original="{{$.i18n.Tr "repo.copy_link"}}" data-success="{{$.i18n.Tr "repo.copy_link_success"}}" data-error="{{$.i18n.Tr "repo.copy_link_error"}}" data-content="{{$.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-text="{{.DownloadLink}}">{{if .DownloadLink}}{{$.i18n.Tr "dataset.download_copy"}}{{end}}</a></td>
</tr>
{{end}}
</tbody>
</table>
{{end}}
</div>
</div>
</div>


Loading…
Cancel
Save