From 4558147e12595d48b7c13241f62474c0cef969a8 Mon Sep 17 00:00:00 2001 From: Zahdi <ZahdiMohcine20@gmail.com> Date: Mon, 31 Mar 2025 23:47:16 +0200 Subject: [PATCH] [Update] added some other authors --- src/Controller/ItemController.php | 1 + src/Controller/PurchaseProofController.php | 1 + src/Entity/Item.php | 2 ++ src/Entity/PurchaseProof.php | 1 + src/Form/ItemType.php | 1 + src/Form/PurchaseProofType.php | 1 + templates/item/edit.html.twig | 2 ++ templates/item/index.html.twig | 2 ++ templates/item/new.html.twig | 2 ++ templates/item/show.html.twig | 2 ++ templates/wishlist/edit.html.twig | 1 - templates/wishlist/show.html.twig | 1 - 12 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/Controller/ItemController.php b/src/Controller/ItemController.php index 560ed7c0..5fcb7523 100644 --- a/src/Controller/ItemController.php +++ b/src/Controller/ItemController.php @@ -1,4 +1,5 @@ <?php +// Created by Firas Bouzazi and Mohammed Oun namespace App\Controller; diff --git a/src/Controller/PurchaseProofController.php b/src/Controller/PurchaseProofController.php index 40a13dd1..7eff34cc 100644 --- a/src/Controller/PurchaseProofController.php +++ b/src/Controller/PurchaseProofController.php @@ -1,4 +1,5 @@ <?php +// Created by Firas Bouzazi and Mohammed Oun namespace App\Controller; diff --git a/src/Entity/Item.php b/src/Entity/Item.php index a56313aa..42045f6c 100644 --- a/src/Entity/Item.php +++ b/src/Entity/Item.php @@ -1,4 +1,6 @@ <?php +// Created by Firas Bouzazi and Mohammed Oun + namespace App\Entity; diff --git a/src/Entity/PurchaseProof.php b/src/Entity/PurchaseProof.php index f8638c43..27d60c81 100644 --- a/src/Entity/PurchaseProof.php +++ b/src/Entity/PurchaseProof.php @@ -1,4 +1,5 @@ <?php +// Created by Firas Bouzazi and Mohammed Oun namespace App\Entity; diff --git a/src/Form/ItemType.php b/src/Form/ItemType.php index 864d946e..d0b6e13e 100644 --- a/src/Form/ItemType.php +++ b/src/Form/ItemType.php @@ -1,4 +1,5 @@ <?php +// Created by Firas Bouzazi and Mohammed Oun namespace App\Form; diff --git a/src/Form/PurchaseProofType.php b/src/Form/PurchaseProofType.php index bc22634d..aeb5d130 100644 --- a/src/Form/PurchaseProofType.php +++ b/src/Form/PurchaseProofType.php @@ -1,4 +1,5 @@ <?php +// Created by Firas Bouzazi and Mohammed Oun namespace App\Form; diff --git a/templates/item/edit.html.twig b/templates/item/edit.html.twig index e10931fa..1573a4ac 100644 --- a/templates/item/edit.html.twig +++ b/templates/item/edit.html.twig @@ -1,3 +1,5 @@ +{# Created by Firas Bouzazi and Mohammed Oun #} + {% extends 'base.html.twig' %} {% block title %}{{ item is defined ? 'Edit Item' : 'New Item' }}{% endblock %} diff --git a/templates/item/index.html.twig b/templates/item/index.html.twig index 05077d53..79c00c27 100644 --- a/templates/item/index.html.twig +++ b/templates/item/index.html.twig @@ -1,3 +1,5 @@ +{# Created by Firas Bouzazi and Mohammed Oun #} + {% extends 'base.html.twig' %} {% block title %}Item index{% endblock %} diff --git a/templates/item/new.html.twig b/templates/item/new.html.twig index f12d2d5f..5b17abc1 100644 --- a/templates/item/new.html.twig +++ b/templates/item/new.html.twig @@ -1,3 +1,5 @@ +{# Created by Firas Bouzazi and Mohammed Oun #} + {% extends 'base.html.twig' %} {% block title %}New Item{% endblock %} diff --git a/templates/item/show.html.twig b/templates/item/show.html.twig index 508aa78a..d7eca5bf 100644 --- a/templates/item/show.html.twig +++ b/templates/item/show.html.twig @@ -1,3 +1,5 @@ +{# Created by Firas Bouzazi and Mohammed Oun #} + {% extends 'base.html.twig' %} {% block title %}Item Details{% endblock %} diff --git a/templates/wishlist/edit.html.twig b/templates/wishlist/edit.html.twig index fcef07fe..90a24df2 100644 --- a/templates/wishlist/edit.html.twig +++ b/templates/wishlist/edit.html.twig @@ -1,4 +1,3 @@ -{# Created by Mohcine Zahdi and Othmane Mounouar #} {% extends 'base.html.twig' %} diff --git a/templates/wishlist/show.html.twig b/templates/wishlist/show.html.twig index ee440fcd..de9582b2 100644 --- a/templates/wishlist/show.html.twig +++ b/templates/wishlist/show.html.twig @@ -1,5 +1,4 @@ {% extends 'base.html.twig' %} -{# Created by Mohcine Zahdi and Othmane Mounouar #} {% block title %}{{ wishlist.name }}{% endblock %} -- GitLab