Merge pull request #8855 from demarches-simplifiees/8854-manager-zones
WIP [manager] affiche les zones d'une procédure donnée
This commit is contained in:
commit
7250c0cca7
1 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
||||||
id: Field::Number.with_options(searchable: true),
|
id: Field::Number.with_options(searchable: true),
|
||||||
libelle: Field::String,
|
libelle: Field::String,
|
||||||
description: Field::String,
|
description: Field::String,
|
||||||
zone: Field::BelongsTo,
|
zones: Field::HasMany,
|
||||||
lien_site_web: Field::String, # TODO: use Field::Url when administrate-v0.12 will be released
|
lien_site_web: Field::String, # TODO: use Field::Url when administrate-v0.12 will be released
|
||||||
organisation: Field::String,
|
organisation: Field::String,
|
||||||
created_at: Field::DateTime,
|
created_at: Field::DateTime,
|
||||||
|
@ -52,7 +52,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
||||||
:id,
|
:id,
|
||||||
:created_at,
|
:created_at,
|
||||||
:libelle,
|
:libelle,
|
||||||
:zone,
|
:zones,
|
||||||
:service,
|
:service,
|
||||||
:dossiers,
|
:dossiers,
|
||||||
:published_at,
|
:published_at,
|
||||||
|
@ -70,7 +70,7 @@ class ProcedureDashboard < Administrate::BaseDashboard
|
||||||
:tags,
|
:tags,
|
||||||
:lien_site_web,
|
:lien_site_web,
|
||||||
:organisation,
|
:organisation,
|
||||||
:zone,
|
:zones,
|
||||||
:service,
|
:service,
|
||||||
:created_at,
|
:created_at,
|
||||||
:updated_at,
|
:updated_at,
|
||||||
|
|
Loading…
Add table
Reference in a new issue