Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-07-09 13:02:47 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-07-09 13:08:00 +0300
commit6848b0a6258681286c3929979fb3e6b5571cce61 (patch)
treea17b971b5a8fbe7ecf896e8e2ff261091ea598b5 /app/views/projects/show.html.haml
parent11e43cddbc22e9402e1f3f0f79172cebd741983f (diff)
Show edit readme from project home page
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/show.html.haml')
-rw-r--r--app/views/projects/show.html.haml9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml
index 17907a42e3c..889ad52f235 100644
--- a/app/views/projects/show.html.haml
+++ b/app/views/projects/show.html.haml
@@ -43,10 +43,11 @@
- if readme = @repository.readme
%article.readme-holder#README
.clearfix
- %small.pull-right
- = link_to namespace_project_blob_path(@project.namespace, @project, tree_join(@repository.root_ref, readme.name)), class: 'light' do
- %i.fa.fa-file
- = readme.name
+ .pull-right
+ &nbsp;
+ - if can?(current_user, :push_code, @project)
+ = link_to namespace_project_edit_blob_path(@project.namespace, @project, tree_join(@repository.root_ref, readme.name)), class: 'light' do
+ %i.fa.fa-pencil
.wiki
= render_readme(readme)
- else