Browse Source

Show repository size in repo home page and settings (#8940)

* feat: display repository size on repo home and settings

* refactor: move repo size up in setting page
for-closed-social
Antoine GIRARD 4 years ago
committed by zeripath
parent
commit
cda8de2004
3 changed files with 8 additions and 0 deletions
  1. +1
    -0
      options/locale/locale_en-US.ini
  2. +4
    -0
      templates/repo/settings/options.tmpl
  3. +3
    -0
      templates/repo/sub_menu.tmpl

+ 1
- 0
options/locale/locale_en-US.ini View File

@ -582,6 +582,7 @@ email_notifications.submit = Set Email Preference
owner = Owner
repo_name = Repository Name
repo_name_helper = Good repository names use short, memorable and unique keywords.
repo_size = Repository Size
template = Template
template_select = Select a template.
template_helper = Make repository a template

+ 4
- 0
templates/repo/settings/options.tmpl View File

@ -15,6 +15,10 @@
<label for="repo_name">{{.i18n.Tr "repo.repo_name"}}</label>
<input id="repo_name" name="repo_name" value="{{.Repository.Name}}" data-repo-name="{{.Repository.Name}}" autofocus required>
</div>
<div class="inline field">
<label>{{.i18n.Tr "repo.repo_size"}}</label>
<span>{{SizeFmt .Repository.Size}}</span>
</div>
<div class="inline field">
<label>{{.i18n.Tr "repo.template"}}</label>
<div class="ui checkbox">

+ 3
- 0
templates/repo/sub_menu.tmpl View File

@ -9,6 +9,9 @@
<div class="item{{if .PageIsBranches}} active{{end}}">
<a class="ui" href="{{.RepoLink}}/branches/"><i class="octicon octicon-git-branch"></i> <b>{{.BranchesCount}}</b> {{.i18n.Tr (TrN .i18n.Lang .BranchesCount "repo.branch" "repo.branches") }}</a>
</div>
<div class="item">
<a class="ui" href="#"><i class="octicon octicon-database"></i> <b>{{SizeFmt .Repository.Size}}</b></a>
</div>
{{end}}
</div>
</div>

Loading…
Cancel
Save