2015-11-22 01:32:09 -05:00
{{ template "base/head" . }}
2023-02-01 19:56:10 -03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content organization profile">
2023-02-13 17:59:59 +00:00
<div class="ui container gt-df">
2023-08-10 11:19:39 +08:00
{{ ctx .AvatarUtils .Avatar .Org 1 4 0 "org-avatar" }}
2018-01-10 00:11:01 +01:00
<div id="org-info">
2023-10-25 19:40:39 +09:00
<div class="ui header">
2018-01-10 00:11:01 +01:00
{{ .Org .DisplayName }}
2020-10-06 01:25:43 -05:00
<span class="org-visibility">
2023-09-25 10:56:50 +02:00
{{ if .Org .Visibility .IsLimited }} <span class="ui large basic horizontal label"> {{ ctx .Locale .Tr "org.settings.visibility.limited_shortname" }} </span> {{ end }}
{{ if .Org .Visibility .IsPrivate }} <span class="ui large basic horizontal label"> {{ ctx .Locale .Tr "org.settings.visibility.private_shortname" }} </span> {{ end }}
2020-10-06 01:25:43 -05:00
</span>
2018-01-10 00:11:01 +01:00
</div>
2023-01-30 09:16:12 +01:00
{{ if $ .RenderedDescription }} <div class="render-content markup"> {{ $ .RenderedDescription | Str2html }} </div> {{ end }}
2018-01-10 00:11:01 +01:00
<div class="text grey meta">
2023-07-25 10:26:27 +02:00
{{ if .Org .Location }} <div class="flex-text-block"> {{ svg "octicon-location" }} <span> {{ .Org .Location }} </span></div> {{ end }}
{{ if .Org .Website }} <div class="flex-text-block"> {{ svg "octicon-link" }} <a target="_blank" rel="noopener noreferrer me" href=" {{ .Org .Website }} "> {{ .Org .Website }} </a></div> {{ end }}
{{ if $ .IsSigned }}
{{ if .Org .Email }} <div class="flex-text-block"> {{ svg "octicon-mail" }} <a class="muted" href="mailto: {{ .Org .Email }} "> {{ .Org .Email }} </a></div> {{ end }}
{{ end }}
2015-12-07 23:30:52 +01:00
</div>
</div>
2023-06-09 11:10:51 +02:00
<div class="right menu">
2023-12-06 20:29:26 +00:00
{{ if .EnableFeed }}
2023-12-07 03:01:32 +00:00
<a class="ui basic label button gt-mr-0" href=" {{ $ .Org .HomeLink }} .rss" data-tooltip-content=" {{ ctx .Locale .Tr "rss_feed" }} ">
2023-12-06 20:29:26 +00:00
{{ svg "octicon-rss" 2 4 }}
2023-12-07 03:01:32 +00:00
</a>
2023-12-06 20:29:26 +00:00
{{ end }}
2024-02-17 14:13:37 +09:00
{{ if .IsSigned }}
<button class="ui basic button gt-mr-0" hx-post=" {{ .Org .HomeLink }} ?action= {{ if $ .IsFollowing }} unfollow {{ else }} follow {{ end }} ">
{{ if $ .IsFollowing }}
{{ ctx .Locale .Tr "user.unfollow" }}
{{ else }}
{{ ctx .Locale .Tr "user.follow" }}
{{ end }}
</button>
{{ end }}
2023-04-30 04:13:58 +09:00
</div>
2015-12-07 23:30:52 +01:00
</div>
2015-11-22 01:32:09 -05:00
2021-11-25 00:12:54 +08:00
{{ template "org/menu" . }}
2015-11-22 01:32:09 -05:00
2015-12-07 23:30:52 +01:00
<div class="ui container">
2018-01-10 00:11:01 +01:00
<div class="ui mobile reversed stackable grid">
2023-08-15 23:00:35 +09:00
<div class="ui {{ if .ShowMemberAndTeamTab }} eleven wide {{ end }} column">
2023-11-09 15:05:52 +01:00
{{ if .ProfileReadme }}
<div id="readme_profile" class="markup"> {{ .ProfileReadme | Str2html }} </div>
{{ end }}
2019-02-08 09:45:43 -07:00
{{ template "explore/repo_search" . }}
2015-12-07 23:30:52 +01:00
{{ template "explore/repo_list" . }}
2016-11-07 11:44:49 +01:00
{{ template "base/paginate" . }}
2015-12-07 23:30:52 +01:00
</div>
2015-11-22 01:32:09 -05:00
2023-08-15 23:00:35 +09:00
{{ if .ShowMemberAndTeamTab }}
2015-12-07 23:30:52 +01:00
<div class="ui five wide column">
2022-02-19 20:08:12 +08:00
{{ if .CanCreateOrgRepo }}
<div class="center aligned">
2023-09-25 10:56:50 +02:00
<a class="ui primary button" href=" {{ AppSubUrl }} /repo/create?org= {{ .Org .ID }} "> {{ ctx .Locale .Tr "new_repo" }} </a>
2022-02-19 20:08:12 +08:00
{{ if not .DisableNewPullMirrors }}
2023-09-25 10:56:50 +02:00
<a class="ui primary button" href=" {{ AppSubUrl }} /repo/migrate?org= {{ .Org .ID }} &mirror=1"> {{ ctx .Locale .Tr "new_migrate" }} </a>
2022-02-19 20:08:12 +08:00
{{ end }}
</div>
2023-06-29 14:24:22 +02:00
<div class="divider"></div>
2022-02-19 20:08:12 +08:00
{{ end }}
2023-08-15 23:00:35 +09:00
{{ if .NumMembers }}
<h4 class="ui top attached header gt-df">
2023-09-25 10:56:50 +02:00
<strong class="gt-f1"> {{ ctx .Locale .Tr "org.members" }} </strong>
2023-08-26 07:35:10 +08:00
<a class="text grey gt-df gt-ac" href=" {{ .OrgLink }} /members"><span> {{ .NumMembers }} </span> {{ svg "octicon-chevron-right" }} </a>
2023-08-15 23:00:35 +09:00
</h4>
<div class="ui attached segment members">
{{ $ isMember : = .IsOrganizationMember }}
{{ range .Members }}
{{ if or $ isMember ( call $ .IsPublicMember .ID ) }}
<a href=" {{ .HomeLink }} " title=" {{ .Name }} {{ if .FullName }} ( {{ .FullName }} ) {{ end }} "> {{ ctx .AvatarUtils .Avatar . 4 8 }} </a>
{{ end }}
2015-12-07 23:30:52 +01:00
{{ end }}
2023-08-15 23:00:35 +09:00
</div>
{{ end }}
2015-12-07 23:30:52 +01:00
{{ if .IsOrganizationMember }}
2023-02-13 17:59:59 +00:00
<div class="ui top attached header gt-df">
2023-09-25 10:56:50 +02:00
<strong class="gt-f1"> {{ ctx .Locale .Tr "org.teams" }} </strong>
2023-08-26 07:35:10 +08:00
<a class="text grey gt-df gt-ac" href=" {{ .OrgLink }} /teams"><span> {{ .Org .NumTeams }} </span> {{ svg "octicon-chevron-right" }} </a>
2015-12-07 23:30:52 +01:00
</div>
<div class="ui attached table segment teams">
{{ range .Teams }}
<div class="item">
2021-11-16 18:18:25 +00:00
<a href=" {{ $ .OrgLink }} /teams/ {{ .LowerName | PathEscape }} "><strong class="team-name"> {{ .Name }} </strong></a>
2017-11-04 13:46:34 +08:00
<p class="text grey">
2023-09-25 10:56:50 +02:00
<a class="muted" href=" {{ $ .OrgLink }} /teams/ {{ .LowerName | PathEscape }} "><strong> {{ .NumMembers }} </strong> {{ ctx .Locale .Tr "org.lower_members" }} </a> ·
<a class="muted" href=" {{ $ .OrgLink }} /teams/ {{ .LowerName | PathEscape }} /repositories"><strong> {{ .NumRepos }} </strong> {{ ctx .Locale .Tr "org.lower_repositories" }} </a>
2017-11-04 13:46:34 +08:00
</p>
2015-12-07 23:30:52 +01:00
</div>
{{ end }}
</div>
{{ if .IsOrganizationOwner }}
<div class="ui bottom attached segment">
2023-09-25 10:56:50 +02:00
<a class="ui primary small button" href=" {{ .OrgLink }} /teams/new"> {{ ctx .Locale .Tr "org.create_new_team" }} </a>
2015-12-07 23:30:52 +01:00
</div>
{{ end }}
{{ end }}
</div>
2023-08-15 23:00:35 +09:00
{{ end }}
2015-12-07 23:30:52 +01:00
</div>
</div>
2014-06-28 15:43:25 -04:00
</div>
2015-12-07 23:30:52 +01:00
{{ template "base/footer" . }}