2022-03-30 10:42:47 +02:00
|
|
|
{{template "base/head" .}}
|
2025-04-11 03:12:55 +08:00
|
|
|
{{if .ContextUser.IsOrganization}}
|
|
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization packages">
|
|
|
|
|
{{template "org/header" .}}
|
2022-03-30 10:42:47 +02:00
|
|
|
<div class="ui container">
|
2026-04-06 22:41:17 +02:00
|
|
|
{{template "base/alert" .}}
|
2025-04-11 03:12:55 +08:00
|
|
|
{{template "package/shared/view" .}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{else}}
|
|
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user profile packages">
|
|
|
|
|
<div class="ui container">
|
2026-04-06 22:41:17 +02:00
|
|
|
{{template "base/alert" .}}
|
2025-04-11 03:12:55 +08:00
|
|
|
<div class="ui stackable grid">
|
|
|
|
|
<div class="ui four wide column">
|
|
|
|
|
{{template "shared/user/profile_big_avatar" .}}
|
2023-05-29 12:44:03 +02:00
|
|
|
</div>
|
2025-04-11 03:12:55 +08:00
|
|
|
<div class="ui twelve wide column tw-mb-4">
|
|
|
|
|
{{template "user/overview/header" .}}
|
|
|
|
|
{{template "package/shared/view" .}}
|
2022-03-30 10:42:47 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-04-11 03:12:55 +08:00
|
|
|
{{end}}
|
2022-03-30 10:42:47 +02:00
|
|
|
{{template "base/footer" .}}
|