summaryrefslogtreecommitdiff
path: root/app/views/projects/tags/show.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-11-09 15:39:18 +0100
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-11-09 15:39:18 +0100
commitb7619dad52504f8fc61bfb3b42e7f8bcc42dc06d (patch)
treecbcab6dffa9c220d7b3d56c68a528f28a8cf1e5c /app/views/projects/tags/show.html.haml
parentb67fdfff3c245538ee5a5e9360a2613b76ebada5 (diff)
downloadgitlab-ce-b7619dad52504f8fc61bfb3b42e7f8bcc42dc06d.tar.gz
Add missing param and title for tagrelease-notes
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/tags/show.html.haml')
-rw-r--r--app/views/projects/tags/show.html.haml7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/views/projects/tags/show.html.haml b/app/views/projects/tags/show.html.haml
index f95ae9edc4b..ebe3718afcc 100644
--- a/app/views/projects/tags/show.html.haml
+++ b/app/views/projects/tags/show.html.haml
@@ -4,8 +4,9 @@
.gray-content-block
.pull-right
- = link_to edit_namespace_project_tag_release_path(@project.namespace, @project, @tag.name), class: 'btn-grouped btn', title: 'Edit release notes' do
- = icon("pencil")
+ - if can?(current_user, :push_code, @project)
+ = link_to edit_namespace_project_tag_release_path(@project.namespace, @project, @tag.name), class: 'btn-grouped btn', title: 'Edit release notes' do
+ = icon("pencil")
= link_to namespace_project_tree_path(@project.namespace, @project, @tag.name), class: 'btn btn-grouped', title: 'Browse source code' do
= icon('files-o')
= link_to namespace_project_commits_path(@project.namespace, @project, @tag.name), class: 'btn btn-grouped', title: 'Browse commits' do
@@ -35,4 +36,4 @@
= preserve do
= markdown @release.description
- else
- This tag has no release notes yet. Press edit button to add one
+ This tag has no release notes.