Browse Source

fix issue

pull/1842/head
zhoupzh 3 years ago
parent
commit
b045af3db9
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      templates/explore/datasets.tmpl

+ 7
- 4
templates/explore/datasets.tmpl View File

@@ -184,9 +184,15 @@
</div> </div>
<div class="extra content" style="border-top: none !important;"> <div class="extra content" style="border-top: none !important;">
<div style="display: flex;align-items: center;"> <div style="display: flex;align-items: center;">
{{if eq .UserID 0}}
<a href="{{AppSubUrl}}/{{.Repo.OwnerName}}" title="{{.Repo.OwnerName}}"> <a href="{{AppSubUrl}}/{{.Repo.OwnerName}}" title="{{.Repo.OwnerName}}">
<img class="ui avatar image" style="width: 22px;height:22px;" src="/user/avatar/{{.Repo.OwnerName}}/-1"> <img class="ui avatar image" style="width: 22px;height:22px;" src="/user/avatar/{{.Repo.OwnerName}}/-1">
</a> </a>
{{else}}
<a href="{{AppSubUrl}}/{{.User.Name}}" title="{{.User.Name}}">
<img class="ui avatar image" style="width: 22px;height:22px;" src="/user/avatar/{{.User.Name}}/-1">
</a>
{{end}}
<span style="color: #999999;font-size: 14px;;">创建于:{{TimeSinceUnix1 .CreatedUnix}}</span> <span style="color: #999999;font-size: 14px;;">创建于:{{TimeSinceUnix1 .CreatedUnix}}</span>
</div> </div>
</div> </div>
@@ -215,7 +221,4 @@
</div> </div>
</div> </div>
</div> </div>
{{template "base/footer" .}}
<script>
console.log({{.Datasets}})
</script>
{{template "base/footer" .}}

Loading…
Cancel
Save