mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
Add org visibility label to non-organization's dashboard (#24558)
This commit is contained in:
parent
4daf40505a
commit
97b70a0cd4
2 changed files with 7 additions and 1 deletions
|
@ -35,6 +35,9 @@ const data = {
|
||||||
|
|
||||||
textMyOrgs: {{.locale.Tr "home.my_orgs"}},
|
textMyOrgs: {{.locale.Tr "home.my_orgs"}},
|
||||||
textNewOrg: {{.locale.Tr "new_org"}},
|
textNewOrg: {{.locale.Tr "new_org"}},
|
||||||
|
|
||||||
|
textOrgVisibilityLimited: {{.locale.Tr "org.settings.visibility.limited_shortname"}},
|
||||||
|
textOrgVisibilityPrivate: {{.locale.Tr "org.settings.visibility.private_shortname"}},
|
||||||
};
|
};
|
||||||
|
|
||||||
{{if .Team}}
|
{{if .Team}}
|
||||||
|
@ -42,7 +45,7 @@ data.teamId = {{.Team.ID}};
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{if not .ContextUser.IsOrganization}}
|
{{if not .ContextUser.IsOrganization}}
|
||||||
data.organizations = [{{range .Orgs}}{'name': {{.Name}}, 'num_repos': {{.NumRepos}}},{{end}}];
|
data.organizations = [{{range .Orgs}}{'name': {{.Name}}, 'num_repos': {{.NumRepos}}, 'org_visibility': {{.Visibility}}},{{end}}];
|
||||||
data.isOrganization = false;
|
data.isOrganization = false;
|
||||||
data.organizationsTotalCount = {{.UserOrgsCount}};
|
data.organizationsTotalCount = {{.UserOrgsCount}};
|
||||||
data.canCreateOrganization = {{.SignedUser.CanCreateOrganization}};
|
data.canCreateOrganization = {{.SignedUser.CanCreateOrganization}};
|
||||||
|
|
|
@ -131,6 +131,9 @@
|
||||||
<div class="text truncate item-name gt-f1">
|
<div class="text truncate item-name gt-f1">
|
||||||
<svg-icon name="octicon-organization" :size="16" class-name="gt-mr-2"/>
|
<svg-icon name="octicon-organization" :size="16" class-name="gt-mr-2"/>
|
||||||
<strong>{{ org.name }}</strong>
|
<strong>{{ org.name }}</strong>
|
||||||
|
<span class="ui tiny basic label gt-ml-3" v-if="org.org_visibility !== 'public'">
|
||||||
|
{{ org.org_visibility === 'limited' ? textOrgVisibilityLimited: textOrgVisibilityPrivate }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="text light grey gt-df gt-ac">
|
<div class="text light grey gt-df gt-ac">
|
||||||
{{ org.num_repos }}
|
{{ org.num_repos }}
|
||||||
|
|
Loading…
Reference in a new issue