Commit 6ee51090 authored by Douwe Maan's avatar Douwe Maan

Merge branch 'add-plan-to-license-details' into 'master'

Show the current EE plan in the license details section

See merge request gitlab-org/gitlab-ee!3462
parents 4cae9491 b212777f
......@@ -23,6 +23,9 @@
.panel-heading
Details
%ul.well-list
%li
%span.light Plan:
%strong= @license.plan.capitalize
%li
%span.light Uploaded:
%strong= time_ago_with_tooltip @license.created_at
......@@ -77,6 +80,7 @@
%tr
- @license.licensee.keys.each do |label|
%th= label
%th Plan
%th Uploaded at
%th Started at
%th Expired at
......@@ -86,6 +90,9 @@
%tr
- @license.licensee.keys.each do |label|
%td= license.licensee[label]
%td
%span
= license.plan.capitalize
%td
%span
= license.created_at
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment