diff --git a/app/Resources/views/base.html.twig b/app/Resources/views/base.html.twig
index af59ca1..7b795be 100644
--- a/app/Resources/views/base.html.twig
+++ b/app/Resources/views/base.html.twig
@@ -4,7 +4,7 @@
-
SEQ-UBV | {% block title %} INICIO {% endblock %}
+ PRUEBA| {% block title %} INICIO {% endblock %}
@@ -132,7 +132,7 @@
-
+
{% endblock %}
diff --git a/app/Resources/views/candidato/edit.html.twig b/app/Resources/views/candidato/edit.html.twig
new file mode 100644
index 0000000..48e5b21
--- /dev/null
+++ b/app/Resources/views/candidato/edit.html.twig
@@ -0,0 +1,21 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Candidato edit
+
+ {{ form_start(edit_form) }}
+ {{ form_widget(edit_form) }}
+
+ {{ form_end(edit_form) }}
+
+
+{% endblock %}
diff --git a/app/Resources/views/candidato/index.html.twig b/app/Resources/views/candidato/index.html.twig
new file mode 100644
index 0000000..a00eddb
--- /dev/null
+++ b/app/Resources/views/candidato/index.html.twig
@@ -0,0 +1,72 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+
+{% for type, flashMessage in app.session.flashbag.all() %}
+
+
+{% if flashMessage.title is defined %}
+{{ flashMessage.title }}
+{{ flashMessage.message }}
+{% else %}
+{{ type }}
+{% endif %}
+
+{% endfor %}
+
+ Lista de Candidatos
+
+ Agregar
+
+
+
+
+ Cedula |
+ Nombre |
+ Apellido |
+ Status |
+ Instruccion |
+ Ocupacion |
+ Promedio |
+ Institucion |
+ Pais |
+ Estado |
+ Municipio |
+ Direccion |
+ Actions |
+
+
+
+ {% for candidato in candidatos %}
+
+ {{ candidato.cedula }} |
+ {{ candidato.nombre }} |
+ {{ candidato.apellido }} |
+ {% if candidato.activo %}Yes{% else %}No{% endif %} |
+ {{ candidato.instruccion }} |
+ {{ candidato.ocupacion }} |
+ {{ candidato.promedio }} |
+ {{ candidato.institucion }} |
+ {{ candidato.pais }} |
+ {{ candidato.estado }} |
+ {{ candidato.municipio }} |
+ {{ candidato.direccion }} |
+
+
+
+
+ |
+
+ {% endfor %}
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/candidato/new.html.twig b/app/Resources/views/candidato/new.html.twig
new file mode 100644
index 0000000..ef84385
--- /dev/null
+++ b/app/Resources/views/candidato/new.html.twig
@@ -0,0 +1,157 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Creacion de Candidato
+
+ Datos Personales
+
+
+ {{ form_label(form.nombre) }}
+ {{ form_widget(form.nombre) }}
+ {% if form.cedula.vars.errors[0].message is defined %}
+
+ {{ form.nombre.vars.errors[0].message }}
+
+ {% endif %}
+
+
+ {{ form_label(form.apellido) }}
+ {{ form_widget(form.apellido) }}
+ {% if form.apellido.vars.errors[0].message is defined %}
+
+ {{ form.apellido.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+
+
+ {{ form_label(form.cedula) }}
+ {{ form_widget(form.cedula) }}
+ {% if form.cedula.vars.errors[0].message is defined %}
+
+ {{ form.cedula.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+
+ {{ form_label(form.activo) }}
+ {{ form_widget(form.activo) }}
+ {% if form.edad.vars.errors[0].message is defined %}
+
+ {{ form.activo.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+ Datos Academicos
+
+
+
+ {{ form_label(form.instruccion) }}
+ {{ form_widget(form.instruccion) }}
+ {% if form.instruccion.vars.errors[0].message is defined %}
+
+ {{ form.instruccion.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+ {{ form_label(form.ocupacion) }}
+ {{ form_widget(form.ocupacion) }}
+ {% if form.ocupacion.vars.errors[0].message is defined %}
+
+ {{ form.ocupacion.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+
+
+
+ {{ form_label(form.promedio) }}
+ {{ form_widget(form.promedio) }}
+ {% if form.promedio.vars.errors[0].message is defined %}
+
+ {{ form.promedio.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+ {{ form_label(form.institucion) }}
+ {{ form_widget(form.institucion) }}
+ {% if form.instruccion.vars.errors[0].message is defined %}
+
+ {{ form.instruccion.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+
+ Ubicacion Geografica
+
+
+ {{ form_label(form.pais) }}
+ {{ form_widget(form.pais) }}
+ {% if form.pais.vars.errors[0].message is defined %}
+
+ {{ form.pais.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+
+
+ {% if form.estado.vars.errors[0].message is defined %}
+
+ {{ form.estado.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+
+
+ {{ form_label(form.municipio) }}
+ {{ form_widget(form.municipio) }}
+ {% if form.municipio.vars.errors[0].message is defined %}
+
+ {{ form.municipio.vars.errors[0].message }}
+
+ {% endif %}
+
+
+ {{ form_label(form.direccion) }}
+ {{ form_widget(form.direccion) }}
+ {% if form.direccion.vars.errors[0].message is defined %}
+
+ {{ form.direccion.vars.errors[0].message }}
+
+ {% endif %}
+
+
+
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/candidato/show.html.twig b/app/Resources/views/candidato/show.html.twig
new file mode 100644
index 0000000..a773357
--- /dev/null
+++ b/app/Resources/views/candidato/show.html.twig
@@ -0,0 +1,76 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Candidato
+
+
+
+
+ Id |
+ {{ candidato.id }} |
+
+
+ Nombre |
+ {{ candidato.nombre }} |
+
+
+ Apellido |
+ {{ candidato.apellido }} |
+
+
+ Cedula |
+ {{ candidato.cedula }} |
+
+
+ Activo |
+ {% if candidato.activo %}Yes{% else %}No{% endif %} |
+
+
+ Instruccion |
+ {{ candidato.instruccion }} |
+
+
+ Ocupacion |
+ {{ candidato.ocupacion }} |
+
+
+ Promedio |
+ {{ candidato.promedio }} |
+
+
+ Institucion |
+ {{ candidato.institucion }} |
+
+
+ Pais |
+ {{ candidato.pais }} |
+
+
+ Estado |
+ {{ candidato.estado }} |
+
+
+ Municipio |
+ {{ candidato.municipio }} |
+
+
+ Direccion |
+ {{ candidato.direccion }} |
+
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/estado/edit.html.twig b/app/Resources/views/estado/edit.html.twig
new file mode 100644
index 0000000..26cb310
--- /dev/null
+++ b/app/Resources/views/estado/edit.html.twig
@@ -0,0 +1,21 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Estado edit
+
+ {{ form_start(edit_form) }}
+ {{ form_widget(edit_form) }}
+
+ {{ form_end(edit_form) }}
+
+
+{% endblock %}
diff --git a/app/Resources/views/estado/index.html.twig b/app/Resources/views/estado/index.html.twig
new file mode 100644
index 0000000..48391f4
--- /dev/null
+++ b/app/Resources/views/estado/index.html.twig
@@ -0,0 +1,41 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Estados list
+
+
+
+
+ Id |
+ Descripcion |
+ Codigo |
+ Actions |
+
+
+
+ {% for estado in estados %}
+
+ {{ estado.id }} |
+ {{ estado.descripcion }} |
+ {{ estado.codigo }} |
+
+
+ |
+
+ {% endfor %}
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/estado/new.html.twig b/app/Resources/views/estado/new.html.twig
new file mode 100644
index 0000000..460721b
--- /dev/null
+++ b/app/Resources/views/estado/new.html.twig
@@ -0,0 +1,16 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Estado creation
+
+ {{ form_start(form) }}
+ {{ form_widget(form) }}
+
+ {{ form_end(form) }}
+
+
+{% endblock %}
diff --git a/app/Resources/views/estado/show.html.twig b/app/Resources/views/estado/show.html.twig
new file mode 100644
index 0000000..b6edad6
--- /dev/null
+++ b/app/Resources/views/estado/show.html.twig
@@ -0,0 +1,36 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Estado
+
+
+
+
+ Id |
+ {{ estado.id }} |
+
+
+ Descripcion |
+ {{ estado.descripcion }} |
+
+
+ Codigo |
+ {{ estado.codigo }} |
+
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/municipio/edit.html.twig b/app/Resources/views/municipio/edit.html.twig
new file mode 100644
index 0000000..c3b65d1
--- /dev/null
+++ b/app/Resources/views/municipio/edit.html.twig
@@ -0,0 +1,21 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Municipio edit
+
+ {{ form_start(edit_form) }}
+ {{ form_widget(edit_form) }}
+
+ {{ form_end(edit_form) }}
+
+
+{% endblock %}
diff --git a/app/Resources/views/municipio/index.html.twig b/app/Resources/views/municipio/index.html.twig
new file mode 100644
index 0000000..1f12845
--- /dev/null
+++ b/app/Resources/views/municipio/index.html.twig
@@ -0,0 +1,43 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Municipios list
+
+
+
+
+ Id |
+ Descripcion |
+ Codigo |
+ Estado |
+ Actions |
+
+
+
+ {% for municipio in municipios %}
+
+ {{ municipio.id }} |
+ {{ municipio.descripcion }} |
+ {{ municipio.codigo }} |
+ {{ municipio.estado }} |
+
+
+ |
+
+ {% endfor %}
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/municipio/new.html.twig b/app/Resources/views/municipio/new.html.twig
new file mode 100644
index 0000000..1f0cff5
--- /dev/null
+++ b/app/Resources/views/municipio/new.html.twig
@@ -0,0 +1,16 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Municipio creation
+
+ {{ form_start(form) }}
+ {{ form_widget(form) }}
+
+ {{ form_end(form) }}
+
+
+{% endblock %}
diff --git a/app/Resources/views/municipio/show.html.twig b/app/Resources/views/municipio/show.html.twig
new file mode 100644
index 0000000..55470a4
--- /dev/null
+++ b/app/Resources/views/municipio/show.html.twig
@@ -0,0 +1,36 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Municipio
+
+
+
+
+ Id |
+ {{ municipio.id }} |
+
+
+ Descripcion |
+ {{ municipio.descripcion }} |
+
+
+ Codigo |
+ {{ municipio.codigo }} |
+
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/pruebaed/edit.html.twig b/app/Resources/views/pruebaed/edit.html.twig
new file mode 100644
index 0000000..6d837d6
--- /dev/null
+++ b/app/Resources/views/pruebaed/edit.html.twig
@@ -0,0 +1,89 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+ Editar Prueba
+
+
+