François 6 жил өмнө
parent
commit
d8998caf8a

+ 5 - 2
src/AppBundle/Controller/VideothequeController.php

@@ -143,8 +143,11 @@ class VideothequeController extends Controller
         if ($form->isSubmitted() && $form->isValid())
         {
             $em = $this->getDoctrine()->getManager();
-            $commenraire = $em->getRepository('AppBundle:Commentaire')->findOneBy(array('film'=>$film));
-            $em->remove($commenraire);
+            $commentaire = $em->getRepository('AppBundle:Commentaire')->findOneBy(array('film'=>$film));
+            if ($commentaire != null)
+            {
+                $em->remove($commentaire);
+            }
             $em->remove($film);
             $em->flush();
             $this->addFlash('success', 'Le film '.$film->getTitre().' a bien été supprimé.');

+ 3 - 0
src/AppBundle/Resources/views/videotheque/voirfilm.html.twig

@@ -44,6 +44,9 @@
                                             <a href="{{ path('genre_modifier', {'id': genre.id}) }}"><span class="badge badge-info">{{ genre.name }}</span></a>
                                         {% endfor %}
                                         </p>
+                                        {% if film.lien is not null %}
+                                            <p><strong>Lien : </strong><a href="{{ film.lien }}"><i class="fa fa-external-link"></i></a></p>
+                                        {% endif %}
                                     </div>
                                 </div>
                                 <div class="text-right">