mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-09 00:03:25 +01:00
#29248 didn't modify the view page. The class name is not good enough, so this is a quick fix. Before: org:  user:  After: org:  user: (no change)  Co-authored-by: Giteabot <teabot@gitea.io> (cherry picked from commit dd1f67491f5e2f798a537a61c082b1bf12e47635)
15 lines
476 B
Go HTML Template
15 lines
476 B
Go HTML Template
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization repository projects view-project">
|
|
{{if .ContextUser.IsOrganization}}
|
|
{{template "org/header" .}}
|
|
{{else}}
|
|
{{template "shared/user/org_profile_avatar" .}}
|
|
<div class="ui container tw-mb-4">
|
|
{{template "user/overview/header" .}}
|
|
</div>
|
|
{{end}}
|
|
<div class="ui container fluid padded">
|
|
{{template "projects/view" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|