2021-11-18 22:05:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Page
|
|
|
|
module Admin
|
|
|
|
class Subscription < Chemlab::Page
|
|
|
|
path '/admin/subscription'
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
p :plan
|
|
|
|
p :started
|
|
|
|
p :name
|
|
|
|
p :company
|
|
|
|
p :email
|
|
|
|
h2 :billable_users
|
|
|
|
h2 :maximum_users
|
2021-11-18 22:05:49 +05:30
|
|
|
h2 :users_in_subscription
|
2021-12-11 22:18:48 +05:30
|
|
|
h2 :users_over_subscription
|
|
|
|
table :subscription_history
|
2021-11-18 22:05:49 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|