demarches-normaliennes/app/views/stats/index.html.haml

101 lines
3.5 KiB
Text
Raw Normal View History

2018-03-06 15:54:18 +01:00
- content_for(:title, 'Statistiques')
2020-03-23 17:56:40 +01:00
- content_for :footer do
= render partial: "root/footer"
2018-03-06 15:54:18 +01:00
.statistiques
-# Load Chartkick lazily, by using our React lazy-loader.
-# (Chartkick itself doesn't use React though)
= react_component('Chartkick')
%h1.new-h1 Statistiques
.stat-cards
.stat-card.stat-card-half.big-number-card.pull-left
%span.big-number-card-title.long-title TOTAL DÉMARCHES DÉMAT. OU EN COURS DE DÉMAT.
%span.big-number-card-number
= number_with_delimiter(@procedures_numbers[:total])
%span.big-number-card-detail
#{number_with_delimiter(@procedures_numbers[:last_30_days_count])} (#{@procedures_numbers[:evolution]} %) sur les 30 derniers jours
.stat-card.stat-card-half.big-number-card.pull-left
%span.big-number-card-title TOTAL DOSSIERS DÉPOSÉS
%span.big-number-card-number
= number_with_delimiter(@dossiers_numbers[:total])
%span.big-number-card-detail
#{number_with_delimiter(@dossiers_numbers[:last_30_days_count])} (#{@dossiers_numbers[:evolution]} %) sur les 30 derniers jours
2018-12-18 10:35:23 +01:00
.stat-card.stat-card-half.pull-left
%span.stat-card-title
Pourcentage de contact utilisateur
2018-12-18 10:35:23 +01:00
.chart-container
.chart
= line_chart @contact_percentage
.stat-card-details
Nombre de réponses envoyées via HelpScout
\/ nombre de dossiers déposés
2018-12-18 10:35:23 +01:00
.stat-card.stat-card-half.pull-left
%span.stat-card-title
Répartition des dossiers
.chart-container
.chart
= pie_chart @dossiers_states_for_pie,
2021-09-22 11:29:02 +02:00
colors: ["#000091", "#7F7FC8", "#9A9AFF", "#00006D"]
.stat-card.stat-card-half.pull-left
%ul.segmented-control.pull-right
%li.segmented-control-item.segmented-control-item-active{ data: { 'toggle-chart': '.monthly-procedures-chart' } }
Par mois
%li.segmented-control-item{ data: { 'toggle-chart': '.cumulative-procedures-chart' } }
Cumul
2018-09-05 14:21:48 +02:00
%span.stat-card-title.pull-left Démarches dématérialisées
.clearfix
.chart-container
.chart.monthly-procedures-chart
2017-06-07 14:53:10 +02:00
= column_chart @procedures_in_the_last_4_months
.chart.cumulative-procedures-chart.hidden
2017-06-07 14:53:10 +02:00
= area_chart @procedures_cumulative
.stat-card.stat-card-half.pull-left
%ul.segmented-control.pull-right
%li.segmented-control-item.segmented-control-item-active{ data: { 'toggle-chart': '.monthly-dossiers-chart' } }
Par mois
%li.segmented-control-item{ data: { 'toggle-chart': '.cumulative-dossiers-chart' } }
Cumul
%span.stat-card-title.pull-left Dossiers déposés
.clearfix
.chart-container
.chart.monthly-dossiers-chart
2017-06-07 14:53:10 +02:00
= column_chart @dossiers_in_the_last_4_months
.chart.cumulative-dossiers-chart.hidden
2017-06-07 14:53:10 +02:00
= area_chart @dossiers_cumulative
- if super_admin_signed_in?
2017-06-01 09:44:22 +02:00
.stat-card.stat-card-half.pull-left
2021-05-26 15:16:30 +02:00
%span.stat-card-title Temps de traitement moyen dun dossier
2017-06-01 09:44:22 +02:00
.chart-container
.chart
= line_chart @dossier_instruction_mean_time,
2017-06-07 14:53:10 +02:00
:ytitle => "Jours"
2017-06-01 09:44:22 +02:00
.stat-card.stat-card-half.pull-left
2021-05-26 15:16:30 +02:00
%span.stat-card-title Temps de remplissage moyen dun dossier
2017-06-01 09:44:22 +02:00
.chart-container
.chart
= line_chart @dossier_filling_mean_time,
2017-06-07 14:53:10 +02:00
:ytitle => "Minutes"
.clearfix
2017-05-09 17:09:35 +02:00
- if super_admin_signed_in?
%h2.new-h2 Téléchargement
= link_to "Télécharger les statistiques (CSV)", stats_download_path(format: :csv), class: 'button secondary'