aboutsummaryrefslogtreecommitdiffstats
path: root/templates/org/menu.tmpl
diff options
context:
space:
mode:
authora1012112796 <1012112796@qq.com>2024-08-27 10:54:12 +0800
committerGitHub <noreply@github.com>2024-08-27 10:54:12 +0800
commit39d2fdefaf0dd42aa5e3ee8d3ea0a84b40c005f5 (patch)
treef2053041bd48c03688f330468b93c74b873f83bf /templates/org/menu.tmpl
parent521d91944ed10add89f435efd2e3df17d8af2d51 (diff)
downloadgitea-39d2fdefaf0dd42aa5e3ee8d3ea0a84b40c005f5.tar.gz
gitea-39d2fdefaf0dd42aa5e3ee8d3ea0a84b40c005f5.zip
Split org Propfile README to a new tab `overview` (#31373)
like user profile, add a new overviw tab to show profile READEME when it is exist. replace #31349 (another solution option) example view: ![屏幕截图 2024-06-14 094116](https://github.com/go-gitea/gitea/assets/25342410/3303a1f2-ae02-48e0-9519-7fa11e65657f) ![屏幕截图 2024-06-14 094101](https://github.com/go-gitea/gitea/assets/25342410/7a4a5a48-dc2b-4ad4-b2a2-9ea4ab5d5808) --------- Signed-off-by: a1012112796 <1012112796@qq.com>
Diffstat (limited to 'templates/org/menu.tmpl')
-rw-r--r--templates/org/menu.tmpl7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/org/menu.tmpl b/templates/org/menu.tmpl
index 698a9559c5..29238f8d6b 100644
--- a/templates/org/menu.tmpl
+++ b/templates/org/menu.tmpl
@@ -1,7 +1,12 @@
<div class="ui container">
<overflow-menu class="ui secondary pointing tabular borderless menu tw-mb-4">
<div class="overflow-menu-items">
- <a class="{{if .PageIsViewRepositories}}active {{end}}item" href="{{$.Org.HomeLink}}">
+ {{if .HasProfileReadme}}
+ <a class="{{if .PageIsViewOverview}}active {{end}}item" href="{{$.Org.HomeLink}}">
+ {{svg "octicon-info"}} {{ctx.Locale.Tr "user.overview"}}
+ </a>
+ {{end}}
+ <a class="{{if .PageIsViewRepositories}}active {{end}}item" href="{{$.Org.HomeLink}}{{if .HasProfileReadme}}/-/repositories{{end}}">
{{svg "octicon-repo"}} {{ctx.Locale.Tr "user.repositories"}}
{{if .RepoCount}}
<div class="ui small label">{{.RepoCount}}</div>