From e1cab739ee686598d51aed2f4b1dfea35405e6a0 Mon Sep 17 00:00:00 2001 From: Wilmer Ramones Date: Wed, 20 Jul 2016 14:05:59 -0400 Subject: [PATCH] Creado el CRUD de los estudiantes y la sentencia de solo mostar las Unidades Curriculares de su malla --- app/Resources/views/inscripcion/edit.html.twig | 4 +-- app/Resources/views/inscripcion/index.html.twig | 15 ++++++---- app/Resources/views/inscripcion/show.html.twig | 6 ++++ src/AppBundle/Controller/InscripcionController.php | 18 ++++++++---- src/AppBundle/Entity/EstadoAcademico.php | 21 ++++++------- src/AppBundle/Entity/Inscripcion.php | 5 ++++ src/AppBundle/Form/InscripcionEditType.php | 34 ++++++++++++++++++++++ src/AppBundle/Form/InscripcionType.php | 24 +++++++++++++-- 8 files changed, 101 insertions(+), 26 deletions(-) create mode 100644 src/AppBundle/Form/InscripcionEditType.php diff --git a/app/Resources/views/inscripcion/edit.html.twig b/app/Resources/views/inscripcion/edit.html.twig index 2a2946a..0ac71c1 100644 --- a/app/Resources/views/inscripcion/edit.html.twig +++ b/app/Resources/views/inscripcion/edit.html.twig @@ -1,4 +1,4 @@ -{% extends 'base.html.twig' %} +{% extends 'base_app.html.twig' %} {% block body %}

Inscripcion edit

@@ -10,7 +10,7 @@