summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-08-30 17:17:45 -0500
committerPatricio Cano <suprnova32@gmail.com>2016-08-30 17:17:45 -0500
commitcf37d623e197dae5cc7efb021c1b1d85ca9674ee (patch)
treee785be171d2400ef751426cc79757cca320f856b /app/views
parent63a97c11928d483cfad87d11f83c7df84c29743d (diff)
downloadgitlab-ce-cf37d623e197dae5cc7efb021c1b1d85ca9674ee.tar.gz
Renamed `enable_lfs` to `lfs_enabled` for the Project field, and related fixes.project-specific-lfs
Diffstat (limited to 'app/views')
-rw-r--r--app/views/admin/projects/show.html.haml3
-rw-r--r--app/views/projects/edit.html.haml8
2 files changed, 7 insertions, 4 deletions
diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml
index f65322cc12f..6c7c3c48604 100644
--- a/app/views/admin/projects/show.html.haml
+++ b/app/views/admin/projects/show.html.haml
@@ -75,9 +75,10 @@
= last_commit(@project)
%li
- %span.light LFS status:
+ %span.light Git LFS status:
%strong
= project_lfs_status(@project)
+ = link_to icon('question-circle'), help_page_path('workflow/lfs/manage_large_binaries_with_git_lfs')
- else
%li
%span.light repository:
diff --git a/app/views/projects/edit.html.haml b/app/views/projects/edit.html.haml
index 0c5ce193240..836c6d7b83f 100644
--- a/app/views/projects/edit.html.haml
+++ b/app/views/projects/edit.html.haml
@@ -83,11 +83,13 @@
- if Gitlab.config.lfs.enabled && current_user.admin?
.form-group
.checkbox
- = f.label :enable_lfs do
- = f.check_box :enable_lfs, checked: @project.lfs_enabled?
+ = f.label :lfs_enabled do
+ = f.check_box :lfs_enabled, checked: @project.lfs_enabled?
%strong LFS
%br
- %span.descr Git Large File Storage
+ %span.descr
+ Git Large File Storage
+ = link_to icon('question-circle'), help_page_path('workflow/lfs/manage_large_binaries_with_git_lfs')
- if Gitlab.config.registry.enabled
.form-group
.checkbox