2020-09-10 21:05:34 +02:00
|
|
|
%li.procedure-item.flex.align-start
|
|
|
|
= link_to(instructeur_procedure_path(p)) do
|
|
|
|
.flex
|
2019-12-04 15:45:06 +01:00
|
|
|
|
2020-09-10 21:05:34 +02:00
|
|
|
.procedure-logo{ style: "background-image: url(#{p.logo_url})" }
|
2019-12-04 15:45:06 +01:00
|
|
|
|
2020-09-10 21:05:34 +02:00
|
|
|
.procedure-details
|
|
|
|
%p.procedure-title
|
|
|
|
= procedure_libelle p
|
|
|
|
%ul.procedure-stats.flex
|
|
|
|
%li
|
|
|
|
%object
|
|
|
|
= link_to(instructeur_procedure_path(p, statut: 'a-suivre')) do
|
|
|
|
- a_suivre_count = dossiers_a_suivre_count_per_procedure[p.id] || 0
|
|
|
|
.stats-number
|
|
|
|
= number_with_html_delimiter(a_suivre_count)
|
|
|
|
.stats-legend
|
|
|
|
à suivre
|
|
|
|
%li
|
|
|
|
%object
|
|
|
|
= link_to(instructeur_procedure_path(p, statut: 'suivis')) do
|
|
|
|
- if procedure_ids_en_cours_with_notifications.include?(p.id)
|
|
|
|
%span.notifications{ 'aria-label': "notifications" }
|
|
|
|
- followed_count = followed_dossiers_count_per_procedure[p.id] || 0
|
|
|
|
.stats-number
|
|
|
|
= number_with_html_delimiter(followed_count)
|
|
|
|
.stats-legend
|
|
|
|
= t('pluralize.followed', count: followed_count)
|
|
|
|
%li
|
|
|
|
%object
|
|
|
|
= link_to(instructeur_procedure_path(p, statut: 'traites')) do
|
|
|
|
- if procedure_ids_termines_with_notifications.include?(p.id)
|
|
|
|
%span.notifications{ 'aria-label': "notifications" }
|
|
|
|
- termines_count = dossiers_termines_count_per_procedure[p.id] || 0
|
|
|
|
.stats-number
|
|
|
|
= number_with_html_delimiter(termines_count)
|
|
|
|
.stats-legend
|
|
|
|
= t('pluralize.processed', count: termines_count)
|
|
|
|
%li
|
|
|
|
%object
|
|
|
|
= link_to(instructeur_procedure_path(p, statut: 'tous')) do
|
|
|
|
- dossier_count = dossiers_count_per_procedure[p.id] || 0
|
|
|
|
.stats-number
|
|
|
|
= number_with_html_delimiter(dossier_count)
|
|
|
|
.stats-legend
|
|
|
|
= t('pluralize.case', count: dossier_count)
|
2021-12-02 15:56:34 +01:00
|
|
|
|
|
|
|
- if p.procedure_expires_when_termine_enabled
|
|
|
|
%li
|
|
|
|
%object
|
|
|
|
= link_to(instructeur_procedure_path(p, statut: 'expirant')) do
|
|
|
|
- expirant_count = dossiers_expirant_count_per_procedure[p.id] || 0
|
|
|
|
.stats-number
|
|
|
|
= number_with_html_delimiter(expirant_count)
|
|
|
|
.stats-legend
|
|
|
|
= t('pluralize.dossiers_close_to_expiration', count: expirant_count)
|
|
|
|
|
2020-09-10 21:05:34 +02:00
|
|
|
%li
|
|
|
|
%object
|
|
|
|
= link_to(instructeur_procedure_path(p, statut: 'archives')) do
|
|
|
|
- archived_count = dossiers_archived_count_per_procedure[p.id] || 0
|
|
|
|
.stats-number
|
|
|
|
= number_with_html_delimiter(archived_count)
|
|
|
|
.stats-legend
|
|
|
|
= t('pluralize.archived', count: archived_count)
|
2019-12-04 15:45:06 +01:00
|
|
|
|
2020-09-10 21:05:34 +02:00
|
|
|
- if p.close?
|
|
|
|
.procedure-status
|
|
|
|
%span.label Close
|
|
|
|
- elsif p.depubliee?
|
|
|
|
.procedure-status
|
|
|
|
%span.label Dépubliée
|