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:
authorTap <visibletrap@gmail.com>2016-02-19 08:34:45 +0300
committerTap <visibletrap@gmail.com>2016-02-19 08:50:56 +0300
commitc48ac79c18dfe85d6e3907b3006b61238d8900a4 (patch)
tree88dca10ce47c9db891683427d4e1192fd7d2c67a /app/views/projects/labels
parent44a9e260490c8905a15515b70a63425163b3fb67 (diff)
Pull right side of label row out
Diffstat (limited to 'app/views/projects/labels')
-rw-r--r--app/views/projects/labels/_label.html.haml11
1 files changed, 10 insertions, 1 deletions
diff --git a/app/views/projects/labels/_label.html.haml b/app/views/projects/labels/_label.html.haml
index 3d9118892ff..5b35acc66c0 100644
--- a/app/views/projects/labels/_label.html.haml
+++ b/app/views/projects/labels/_label.html.haml
@@ -1,2 +1,11 @@
%li{id: dom_id(label)}
- = render "shared/label_row", label: label, editable: true
+ = render "shared/label_row", label: label
+
+ .pull-right
+ %strong.append-right-20
+ = link_to_label(label) do
+ = pluralize label.open_issues_count, 'open issue'
+
+ - if can? current_user, :admin_label, @project
+ = link_to 'Edit', edit_namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-sm'
+ = link_to 'Delete', namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-sm btn-remove remove-row', method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?"}