diff --git a/src/Form/FaultType.php b/src/Form/FaultType.php index 86e2112..419920b 100644 --- a/src/Form/FaultType.php +++ b/src/Form/FaultType.php @@ -3,6 +3,7 @@ namespace App\Form; use App\Entity\Fault; +use Symfony\Bridge\Doctrine\Form\Type\EntityType; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\Form\FormBuilderInterface; @@ -14,6 +15,7 @@ class FaultType extends AbstractType { $builder ->add('Wording', TextType::class) + ->add('Description', TextType::class) ; } diff --git a/templates/fault/index.html.twig b/templates/fault/index.html.twig index 4e9fc58..77acb43 100644 --- a/templates/fault/index.html.twig +++ b/templates/fault/index.html.twig @@ -10,7 +10,7 @@