summaryrefslogtreecommitdiff
path: root/app/views/ci/status/_badge.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/ci/status/_badge.html.haml')
-rw-r--r--app/views/ci/status/_badge.html.haml10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/ci/status/_badge.html.haml b/app/views/ci/status/_badge.html.haml
new file mode 100644
index 00000000000..f2135af2686
--- /dev/null
+++ b/app/views/ci/status/_badge.html.haml
@@ -0,0 +1,10 @@
+- status = local_assigns.fetch(:status)
+
+- if status.has_details?
+ = link_to status.details_path, class: "ci-status ci-#{status}" do
+ = custom_icon(status.icon)
+ = status.text
+- else
+ %span{ class: "ci-status ci-#{status}" }
+ = custom_icon(status.icon)
+ = status.text