Browse Source

Evolution #601: Admin: re-création: Renommage bundle et ajout gestion Tag (succinte)

Sevajol Bastien 12 years ago
parent
commit
19082b4f49
43 changed files with 224 additions and 100 deletions
  1. 1 1
      app/AppKernel.php
  2. 9 8
      app/config/routing.yml
  3. 9 0
      src/Muzich/AdminBundle/Controller/Admin_element/DeleteController.php
  4. 9 0
      src/Muzich/AdminBundle/Controller/Admin_element/EditController.php
  5. 9 0
      src/Muzich/AdminBundle/Controller/Admin_element/ListController.php
  6. 9 0
      src/Muzich/AdminBundle/Controller/Admin_element/NewController.php
  7. 9 0
      src/Muzich/AdminBundle/Controller/Admin_element/ShowController.php
  8. 9 0
      src/Muzich/AdminBundle/Controller/Admin_tag/DeleteController.php
  9. 9 0
      src/Muzich/AdminBundle/Controller/Admin_tag/EditController.php
  10. 9 0
      src/Muzich/AdminBundle/Controller/Admin_tag/ListController.php
  11. 9 0
      src/Muzich/AdminBundle/Controller/Admin_tag/NewController.php
  12. 9 0
      src/Muzich/AdminBundle/Controller/Admin_tag/ShowController.php
  13. 9 0
      src/Muzich/AdminBundle/Form/Type/Admin_element/EditType.php
  14. 9 0
      src/Muzich/AdminBundle/Form/Type/Admin_element/FiltersType.php
  15. 9 0
      src/Muzich/AdminBundle/Form/Type/Admin_element/NewType.php
  16. 9 0
      src/Muzich/AdminBundle/Form/Type/Admin_tag/EditType.php
  17. 9 0
      src/Muzich/AdminBundle/Form/Type/Admin_tag/FiltersType.php
  18. 9 0
      src/Muzich/AdminBundle/Form/Type/Admin_tag/NewType.php
  19. 4 3
      src/Muzich/AdminBundle/Menu/MenuBuilder.php
  20. 9 0
      src/Muzich/AdminBundle/MuzichAdminBundle.php
  21. 3 3
      src/Muzich/AdminBundle/Resources/config/Admin_element-generator.yml
  22. 46 0
      src/Muzich/AdminBundle/Resources/config/Admin_tag-generator.yml
  23. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_elementEdit/index.html.twig
  24. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_elementList/index.html.twig
  25. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_elementNew/index.html.twig
  26. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_elementShow/index.html.twig
  27. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_tagEdit/index.html.twig
  28. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_tagList/index.html.twig
  29. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_tagNew/index.html.twig
  30. 1 0
      src/Muzich/AdminBundle/Resources/views/Admin_tagShow/index.html.twig
  31. 0 9
      src/Muzich/ElementAdminBundle/Controller/Admin_element/DeleteController.php
  32. 0 9
      src/Muzich/ElementAdminBundle/Controller/Admin_element/EditController.php
  33. 0 9
      src/Muzich/ElementAdminBundle/Controller/Admin_element/ListController.php
  34. 0 9
      src/Muzich/ElementAdminBundle/Controller/Admin_element/NewController.php
  35. 0 9
      src/Muzich/ElementAdminBundle/Controller/Admin_element/ShowController.php
  36. 0 9
      src/Muzich/ElementAdminBundle/Form/Type/Admin_element/EditType.php
  37. 0 9
      src/Muzich/ElementAdminBundle/Form/Type/Admin_element/FiltersType.php
  38. 0 9
      src/Muzich/ElementAdminBundle/Form/Type/Admin_element/NewType.php
  39. 0 9
      src/Muzich/ElementAdminBundle/MuzichElementAdminBundle.php
  40. 0 1
      src/Muzich/ElementAdminBundle/Resources/views/Admin_elementEdit/index.html.twig
  41. 0 1
      src/Muzich/ElementAdminBundle/Resources/views/Admin_elementList/index.html.twig
  42. 0 1
      src/Muzich/ElementAdminBundle/Resources/views/Admin_elementNew/index.html.twig
  43. 0 1
      src/Muzich/ElementAdminBundle/Resources/views/Admin_elementShow/index.html.twig

+ 1 - 1
app/AppKernel.php View File

@@ -41,7 +41,7 @@ class AppKernel extends Kernel
41 41
             new Muzich\GroupBundle\MuzichGroupBundle(),
42 42
             new Muzich\FavoriteBundle\MuzichFavoriteBundle(),
43 43
             new Muzich\CommentBundle\MuzichCommentBundle(),
44
-            new Muzich\ElementAdminBundle\MuzichElementAdminBundle(),
44
+            new Muzich\AdminBundle\MuzichAdminBundle(),
45 45
         );
46 46
 
47 47
         if (in_array($this->getEnvironment(), array('dev', 'test'))) {

+ 9 - 8
app/config/routing.yml View File

@@ -68,13 +68,14 @@ MuzichCommentBundle:
68 68
 AdmingeneratorGeneratorBundle_Dashboard:
69 69
     resource: "@AdmingeneratorGeneratorBundle/Resources/config/routing.yml"
70 70
     prefix:   /
71
-    
72
-#MuzichAdminBundle_admin_muzich_admin_bundle_admin:
73
-#    resource: "@MuzichAdminBundle/Controller/Admin/"
74
-#    type:     admingenerator
75
-#    prefix:   /admin/muzich_admin_bundle/admin
76 71
 
77
-MuzichElementAdminBundle_admin_muzich_element_admin_bundle_admin_element:
78
-    resource: "@MuzichElementAdminBundle/Controller/Admin_element/"
72
+########## ADMIN
73
+MuzichAdminBundle_admin_muzich_admin_bundle_admin_element:
74
+    resource: "@MuzichAdminBundle/Controller/Admin_element/"
75
+    type:     admingenerator
76
+    prefix:   /admin/muzich_admin_bundle/admin_element
77
+
78
+MuzichAdminBundle_admin_muzich_admin_bundle_admin_tag:
79
+    resource: "@MuzichAdminBundle/Controller/Admin_tag/"
79 80
     type:     admingenerator
80
-    prefix:   /admin/muzich_element_admin_bundle/admin_element
81
+    prefix:   /admin/muzich_admin_bundle/admin_tag

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_element/DeleteController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_elementController\DeleteController as BaseDeleteController;
6
+
7
+class DeleteController extends BaseDeleteController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_element/EditController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_elementController\EditController as BaseEditController;
6
+
7
+class EditController extends BaseEditController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_element/ListController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_elementController\ListController as BaseListController;
6
+
7
+class ListController extends BaseListController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_element/NewController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_elementController\NewController as BaseNewController;
6
+
7
+class NewController extends BaseNewController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_element/ShowController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_elementController\ShowController as BaseShowController;
6
+
7
+class ShowController extends BaseShowController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_tag/DeleteController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_tagController\DeleteController as BaseDeleteController;
6
+
7
+class DeleteController extends BaseDeleteController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_tag/EditController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_tagController\EditController as BaseEditController;
6
+
7
+class EditController extends BaseEditController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_tag/ListController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_tagController\ListController as BaseListController;
6
+
7
+class ListController extends BaseListController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_tag/NewController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_tagController\NewController as BaseNewController;
6
+
7
+class NewController extends BaseNewController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Controller/Admin_tag/ShowController.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Controller\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\BaseAdmin_tagController\ShowController as BaseShowController;
6
+
7
+class ShowController extends BaseShowController
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Form/Type/Admin_element/EditType.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Form\Type\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\Form\BaseAdmin_elementType\EditType as BaseEditType;
6
+
7
+class EditType extends BaseEditType
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Form/Type/Admin_element/FiltersType.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Form\Type\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\Form\BaseAdmin_elementType\FiltersType as BaseFiltersType;
6
+
7
+class FiltersType extends BaseFiltersType
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Form/Type/Admin_element/NewType.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Form\Type\Admin_element;
4
+
5
+use Admingenerated\MuzichAdminBundle\Form\BaseAdmin_elementType\NewType as BaseNewType;
6
+
7
+class NewType extends BaseNewType
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Form/Type/Admin_tag/EditType.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Form\Type\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\Form\BaseAdmin_tagType\EditType as BaseEditType;
6
+
7
+class EditType extends BaseEditType
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Form/Type/Admin_tag/FiltersType.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Form\Type\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\Form\BaseAdmin_tagType\FiltersType as BaseFiltersType;
6
+
7
+class FiltersType extends BaseFiltersType
8
+{
9
+}

+ 9 - 0
src/Muzich/AdminBundle/Form/Type/Admin_tag/NewType.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle\Form\Type\Admin_tag;
4
+
5
+use Admingenerated\MuzichAdminBundle\Form\BaseAdmin_tagType\NewType as BaseNewType;
6
+
7
+class NewType extends BaseNewType
8
+{
9
+}

src/Muzich/ElementAdminBundle/Menu/MuzichMenuBuilder.php → src/Muzich/AdminBundle/Menu/MenuBuilder.php View File

@@ -1,11 +1,11 @@
1 1
 <?php
2 2
 
3
-namespace Muzich\elementAdminBundle\Menu;
3
+namespace Muzich\AdminBundle\Menu;
4 4
 
5 5
 use Admingenerator\GeneratorBundle\Menu\AdmingeneratorMenuBuilder as BaseMenu;
6 6
 use Symfony\Component\HttpFoundation\Request;
7 7
 
8
-class MuzichMenuBuilder extends BaseMenu
8
+class MenuBuilder extends BaseMenu
9 9
 {
10 10
   
11 11
   public function createDashboardMenu(Request $request)
@@ -29,7 +29,8 @@ class MuzichMenuBuilder extends BaseMenu
29 29
   
30 30
   protected function addAdministrationLinksToMenu($menu)
31 31
   {
32
-    $this->addNavLinkRoute($menu, 'Elements', 'Muzich_ElementAdminBundle_Admin_element_list');
32
+    $this->addNavLinkRoute($menu, 'Elements', 'Muzich_AdminBundle_Admin_element_list');
33
+    $this->addNavLinkRoute($menu, 'Tags', 'Muzich_AdminBundle_Admin_tag_list');
33 34
   }
34 35
   
35 36
   public function createAdminMenu(Request $request)

+ 9 - 0
src/Muzich/AdminBundle/MuzichAdminBundle.php View File

@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Muzich\AdminBundle;
4
+
5
+use Symfony\Component\HttpKernel\Bundle\Bundle;
6
+
7
+class MuzichAdminBundle extends Bundle
8
+{
9
+}

src/Muzich/ElementAdminBundle/Resources/config/Admin_element-generator.yml → src/Muzich/AdminBundle/Resources/config/Admin_element-generator.yml View File

@@ -3,7 +3,7 @@ generator: admingenerator.generator.doctrine
3 3
 params:
4 4
   model: Muzich\CoreBundle\Entity\Element
5 5
   namespace_prefix: Muzich
6
-  bundle_name: ElementAdminBundle
6
+  bundle_name: AdminBundle
7 7
   fields:
8 8
     owner:
9 9
       label: Owner name
@@ -15,7 +15,7 @@ params:
15 15
 builders:
16 16
   list:
17 17
     params:
18
-      title: List for ElementAdminBundle
18
+      title: List for Element
19 19
       display: [ id, name, owner, type ]
20 20
       actions:
21 21
         new: ~
@@ -26,7 +26,7 @@ builders:
26 26
   filters:
27 27
     params:
28 28
       fields: ~
29
-      display: [ type, name, url, owner, created, updated, need_tags, count_report, count_comment_report ]
29
+      display: [ type, name, url, owner, created, updated, need_tags ]
30 30
   new:
31 31
     params:
32 32
       title: New Element

+ 46 - 0
src/Muzich/AdminBundle/Resources/config/Admin_tag-generator.yml View File

@@ -0,0 +1,46 @@
1
+generator: admingenerator.generator.doctrine
2
+
3
+params:
4
+  model: Muzich\CoreBundle\Entity\Tag
5
+  namespace_prefix: Muzich
6
+  bundle_name: AdminBundle
7
+  fields: ~
8
+
9
+builders:
10
+  list:
11
+    params:
12
+      title: List for Tag
13
+      display: [ id, name ]
14
+      actions:
15
+        new: ~
16
+      object_actions:
17
+        show: ~
18
+        edit: ~
19
+        delete: ~
20
+  filters:
21
+    params:
22
+      fields: ~
23
+      display: [ name ]
24
+  new:
25
+    params:
26
+      title: New Tag
27
+      display:
28
+        "General" : [ name ]
29
+      actions:
30
+        list: ~
31
+  edit:
32
+    params:
33
+      title: "You're editing element \"%object%\"|{ %object%: Tag.name }|"
34
+      display:
35
+        "General" : [ name ]
36
+      actions:
37
+        list: ~
38
+  show:
39
+    params:
40
+      title: "You're viewing element \"%object%\"|{ %object%: Tag.name }|"
41
+      display:
42
+        "General" : [ name ]
43
+      actions:
44
+        list: ~
45
+        new: ~
46
+  delete: ~

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_elementEdit/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_elementEdit:index.html.twig" %}

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_elementList/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_elementList:index.html.twig" %}

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_elementNew/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_elementNew:index.html.twig" %}

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_elementShow/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_elementShow:index.html.twig" %}

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_tagEdit/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_tagEdit:index.html.twig" %}

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_tagList/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_tagList:index.html.twig" %}

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_tagNew/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_tagNew:index.html.twig" %}

+ 1 - 0
src/Muzich/AdminBundle/Resources/views/Admin_tagShow/index.html.twig View File

@@ -0,0 +1 @@
1
+{% extends_admingenerated "MuzichAdminBundle:Admin_tagShow:index.html.twig" %}

+ 0 - 9
src/Muzich/ElementAdminBundle/Controller/Admin_element/DeleteController.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Controller\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\BaseAdmin_elementController\DeleteController as BaseDeleteController;
6
-
7
-class DeleteController extends BaseDeleteController
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/Controller/Admin_element/EditController.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Controller\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\BaseAdmin_elementController\EditController as BaseEditController;
6
-
7
-class EditController extends BaseEditController
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/Controller/Admin_element/ListController.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Controller\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\BaseAdmin_elementController\ListController as BaseListController;
6
-
7
-class ListController extends BaseListController
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/Controller/Admin_element/NewController.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Controller\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\BaseAdmin_elementController\NewController as BaseNewController;
6
-
7
-class NewController extends BaseNewController
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/Controller/Admin_element/ShowController.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Controller\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\BaseAdmin_elementController\ShowController as BaseShowController;
6
-
7
-class ShowController extends BaseShowController
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/Form/Type/Admin_element/EditType.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Form\Type\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\Form\BaseAdmin_elementType\EditType as BaseEditType;
6
-
7
-class EditType extends BaseEditType
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/Form/Type/Admin_element/FiltersType.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Form\Type\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\Form\BaseAdmin_elementType\FiltersType as BaseFiltersType;
6
-
7
-class FiltersType extends BaseFiltersType
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/Form/Type/Admin_element/NewType.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle\Form\Type\Admin_element;
4
-
5
-use Admingenerated\MuzichElementAdminBundle\Form\BaseAdmin_elementType\NewType as BaseNewType;
6
-
7
-class NewType extends BaseNewType
8
-{
9
-}

+ 0 - 9
src/Muzich/ElementAdminBundle/MuzichElementAdminBundle.php View File

@@ -1,9 +0,0 @@
1
-<?php
2
-
3
-namespace Muzich\ElementAdminBundle;
4
-
5
-use Symfony\Component\HttpKernel\Bundle\Bundle;
6
-
7
-class MuzichElementAdminBundle extends Bundle
8
-{
9
-}

+ 0 - 1
src/Muzich/ElementAdminBundle/Resources/views/Admin_elementEdit/index.html.twig View File

@@ -1 +0,0 @@
1
-{% extends_admingenerated "MuzichElementAdminBundle:Admin_elementEdit:index.html.twig" %}

+ 0 - 1
src/Muzich/ElementAdminBundle/Resources/views/Admin_elementList/index.html.twig View File

@@ -1 +0,0 @@
1
-{% extends_admingenerated "MuzichElementAdminBundle:Admin_elementList:index.html.twig" %}

+ 0 - 1
src/Muzich/ElementAdminBundle/Resources/views/Admin_elementNew/index.html.twig View File

@@ -1 +0,0 @@
1
-{% extends_admingenerated "MuzichElementAdminBundle:Admin_elementNew:index.html.twig" %}

+ 0 - 1
src/Muzich/ElementAdminBundle/Resources/views/Admin_elementShow/index.html.twig View File

@@ -1 +0,0 @@
1
-{% extends_admingenerated "MuzichElementAdminBundle:Admin_elementShow:index.html.twig" %}