diff --git a/src/app/entity/controllers/ListTemplateController.php b/src/app/entity/controllers/ListTemplateController.php
index 448d7a15d2c45a5f041a27d15d928a857945c57f..7a3290550ed0cc7236c6efba1f09c73e0d367988 100755
--- a/src/app/entity/controllers/ListTemplateController.php
+++ b/src/app/entity/controllers/ListTemplateController.php
@@ -33,27 +33,11 @@ class ListTemplateController
 {
     public function get(Request $request, Response $response)
     {
-        $queryParams = $request->getQueryParams();
-
-        if (empty($queryParams['admin'])) {
-            $where = ['owner is null or owner = ?'];
-            $data = [$GLOBALS['id']];
-        } else {
-            $where = ['owner is null'];
-            $data = [];
-        }
-
         $listTemplates = ListTemplateModel::get([
-            'select' => ['id', 'type', 'entity_id as "entityId"', 'title', 'description', 'owner'],
-            'where'  => $where,
-            'data'   => $data
+            'select' => ['id', 'type', 'entity_id as "entityId"', 'title', 'description'],
+            'where'  => ['owner is null']
         ]);
 
-        foreach ($listTemplates as $key => $listTemplate) {
-            $listTemplates[$key]['isPrivate'] = $listTemplates[$key]['owner'] != null;
-            unset($listTemplates[$key]['owner']);
-        }
-
         return $response->withJson(['listTemplates' => $listTemplates]);
     }
 
@@ -619,8 +603,8 @@ class ListTemplateController
         $circuit = $queryParams['circuit'] == 'opinion' ? 'opinionCircuit' : 'visaCircuit';
         $resource = ResModel::getById(['resId' => $args['resId'], 'select' => ['destination']]);
 
-        $where = ['type = ?'];
-        $data = [$circuit];
+        $where = ['type = ?', 'owner is null or owner = ?'];
+        $data = [$circuit, $GLOBALS['id']];
         if (!empty($resource['destination'])) {
             $entity = EntityModel::getByEntityId(['entityId' => $resource['destination'], 'select' => ['id']]);
             $where[] = '(entity_id is null OR entity_id = ?)';
@@ -631,7 +615,12 @@ class ListTemplateController
             $orderBy = ['title'];
         }
 
-        $circuits = ListTemplateModel::get(['select' => ['*'], 'where' => $where, 'data' => $data, 'orderBy' => $orderBy]);
+        $circuits = ListTemplateModel::get([
+            'select'  => ['id', 'type', 'entity_id as "entityId"', 'title', 'description', "case when owner is null then false else true end as private"],
+            'where'   => $where,
+            'data'    => $data,
+            'orderBy' => $orderBy
+        ]);
 
         return $response->withJson(['circuits' => $circuits]);
     }
diff --git a/src/frontend/app/administration/diffusionModel/diffusionModels-administration.component.ts b/src/frontend/app/administration/diffusionModel/diffusionModels-administration.component.ts
index 07e58a382f0522ddafb23bb0fa91acaace8ef319..0ab532935946cdb7cf99fde0ac7b9939a80b7b72 100755
--- a/src/frontend/app/administration/diffusionModel/diffusionModels-administration.component.ts
+++ b/src/frontend/app/administration/diffusionModel/diffusionModels-administration.component.ts
@@ -59,7 +59,7 @@ export class DiffusionModelsAdministrationComponent implements OnInit {
 
         this.loading = true;
 
-        this.http.get("../../rest/listTemplates?admin=true")
+        this.http.get("../../rest/listTemplates")
             .subscribe((data: any) => {
                 data['listTemplates'].forEach((template: any) => {
                     if ((template.type.indexOf('visaCircuit') != -1 || template.type.indexOf('opinionCircuit') != -1) && template.entityId == null) {