mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-18 05:08:27 +00:00
Move the statistics to a specific Library Show some subscriptions charts in the admin panel Inject the browser user agent to the database if available Split statistics in different view (day/week/month) Install cron scripts Update the dependencies
12 lines
No EOL
993 B
PHP
12 lines
No EOL
993 B
PHP
<div class="bar first" style="flex-basis: {{ Utils::percent($slice['phone'] - $slice['activated_phone'], $max) }}%"
|
|
data-value="{{ $slice['phone'] - $slice['activated_phone'] }}"
|
|
title="Unactivated phone: {{ $slice['phone'] - $slice['activated_phone'] }}"></div>
|
|
<div class="bar first activated" style="flex-basis: {{ Utils::percent($slice['activated_phone'], $max) }}%"
|
|
data-value="{{ $slice['activated_phone'] }}"
|
|
title="Activated phone: {{ $slice['activated_phone'] }}"></div>
|
|
<div class="bar second" style="flex-basis: {{ Utils::percent($slice['email'] - $slice['activated_email'], $max) }}%"
|
|
data-value="{{ $slice['email'] - $slice['activated_email'] }}"
|
|
title="Unactivated email: {{ $slice['email'] - $slice['activated_email'] }}"></div>
|
|
<div class="bar second activated" style="flex-basis: {{ Utils::percent($slice['activated_email'], $max) }}%"
|
|
data-value="{{ $slice['activated_email'] }}"
|
|
title="Activated email: {{ $slice['activated_email'] }}"></div> |