Skip to content

Commit 5d30bfc

Browse files
committed
Fix #65 fix #57
1 parent 4fc5dcc commit 5d30bfc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ More importantly, Gogs only needs one binary to setup your own project hosting o
3131
- Activity timeline
3232
- SSH/HTTP(S) protocol support.
3333
- Register/delete/rename account.
34-
- Create/delete/watch/rename/transfer public repository.
34+
- Create/delete/watch/rename/transfer public/private repository.
3535
- Repository viewer.
3636
- Issue tracker.
3737
- Gravatar and cache support.

README_ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gogs 完全使用 Go 语言来实现对 Git 数据的操作,实现 **零** 依
2525
- 活动时间线
2626
- SSH/HTTP(S) 协议支持
2727
- 注册/删除/重命名用户
28-
- 创建/删除/关注/重命名/转移公开仓库
28+
- 创建/删除/关注/重命名/转移 公开/私有 仓库
2929
- 仓库浏览器
3030
- Bug 追踪系统
3131
- Gravatar 以及缓存支持

templates/repo/nav.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="container">
33
<div class="row">
44
<div class="col-md-7">
5-
<h3 class="name"><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="/{{.Owner.Name}}/{{.Repository.Name}}">{{.Repository.Name}}</a></h3>
5+
<h3 class="name"><i class="fa fa-book fa-lg"></i><a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="/{{.Owner.Name}}/{{.Repository.Name}}">{{.Repository.Name}}</a>{{if .Repository.IsPrivate}} <span class="label label-default">Private</span> {{end}}</h3>
66
<p class="desc">{{.Repository.Description}}{{if .Repository.Website}} <a href="{{.Repository.Website}}">{{.Repository.Website}}</a>{{end}}</p>
77
</div>
88
<div class="col-md-5 actions text-right clone-group-btn">

0 commit comments

Comments
 (0)