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:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-09-16 11:01:42 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-09-16 16:56:48 +0300
commit3a1c02844e1d40490c3fe7b6a7dbb76cbad791bc (patch)
treebcc60bf75b6e8d4ff30a604098ab646800bba047 /app/views/admin/labels/_label_row.html.haml
parent6799ac9c4788ecd9e9f3222159fa845eff7fbb03 (diff)
Add CRUD functionality to global labels
Diffstat (limited to 'app/views/admin/labels/_label_row.html.haml')
-rw-r--r--app/views/admin/labels/_label_row.html.haml6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/admin/labels/_label_row.html.haml b/app/views/admin/labels/_label_row.html.haml
new file mode 100644
index 00000000000..84c5c44ddcb
--- /dev/null
+++ b/app/views/admin/labels/_label_row.html.haml
@@ -0,0 +1,6 @@
+%span.label-row
+ %span.label-name
+ = render_colored_label(label, tooltip: false)
+ - if label.description
+ %span.label-description
+ = markdown(label.description, pipeline: :single_line)