Browse Source

show lfs config on admin panel (#7220)

for-closed-social
Lunny Xiao 5 years ago
committed by zeripath
parent
commit
1e8a616426
3 changed files with 22 additions and 0 deletions
  1. +5
    -0
      options/locale/locale_en-US.ini
  2. +1
    -0
      routers/admin/admin.go
  3. +16
    -0
      templates/admin/config.tmpl

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

@ -1722,6 +1722,11 @@ config.ssh_keygen_path = Keygen ('ssh-keygen') Path
config.ssh_minimum_key_size_check = Minimum Key Size Check
config.ssh_minimum_key_sizes = Minimum Key Sizes
config.lfs_config = LFS Configuration
config.lfs_enabled = Enabled
config.lfs_content_path = LFS Content Path
config.lfs_http_auth_expiry = LFS HTTP Auth Expiry
config.db_config = Database Configuration
config.db_type = Type
config.db_host = Host

+ 1
- 0
routers/admin/admin.go View File

@ -225,6 +225,7 @@ func Config(ctx *context.Context) {
ctx.Data["ReverseProxyAuthEmail"] = setting.ReverseProxyAuthEmail
ctx.Data["SSH"] = setting.SSH
ctx.Data["LFS"] = setting.LFS
ctx.Data["Service"] = setting.Service
ctx.Data["DbCfg"] = models.DbCfg

+ 16
- 0
templates/admin/config.tmpl View File

@ -96,6 +96,22 @@
</dl>
</div>
<h4 class="ui top attached header">
{{.i18n.Tr "admin.config.lfs_config"}}
</h4>
<div class="ui attached table segment">
<dl class="dl-horizontal admin-dl-horizontal">
<dt>{{.i18n.Tr "admin.config.lfs_enabled"}}</dt>
<dd><i class="fa fa{{if .LFS.StartServer}}-check{{end}}-square-o"></i></dd>
{{if .LFS.StartServer}}
<dt>{{.i18n.Tr "admin.config.lfs_content_path"}}</dt>
<dd>{{.LFS.ContentPath}}</dd>
<dt>{{.i18n.Tr "admin.config.lfs_http_auth_expiry"}}</dt>
<dd>{{.LFS.HTTPAuthExpiry}}</dd>
{{end}}
</dl>
</div>
<h4 class="ui top attached header">
{{.i18n.Tr "admin.config.db_config"}}
</h4>

Loading…
Cancel
Save