+
{% if form.coordenadaUtmOeste.vars.errors[0].message is defined %}
{{ form.coordenadaUtmOeste.vars.errors[0].message }}
@@ -79,13 +72,13 @@
{% endif %}
-
+
+ Atras
+    
{{form_end(form)}}
-
- {#Crear#}
- Volver al Listado
+
{% endblock %}
diff --git a/app/Resources/views/ambiente/show.html.twig b/app/Resources/views/ambiente/show.html.twig
index a757db7..1eb58f6 100644
--- a/app/Resources/views/ambiente/show.html.twig
+++ b/app/Resources/views/ambiente/show.html.twig
@@ -3,7 +3,8 @@
{% block body %}
Ambiente
-
+
+
| Id |
@@ -30,19 +31,20 @@
{{ ambiente.coordenadaUtmOeste }} |
-
+
+    
+
Editar
+    
+
Eliminar
{{ form_end(delete_form) }}
+
+
+ {#
+ {{ form_end(delete_form) }}#}
{% 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..4e9e4cb
--- /dev/null
+++ b/app/Resources/views/estado/edit.html.twig
@@ -0,0 +1,19 @@
+{% 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..1b4b0cb
--- /dev/null
+++ b/app/Resources/views/estado/index.html.twig
@@ -0,0 +1,43 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+
Estados list
+
+
+
+
+ | Id |
+ Descripcion |
+ Codigo |
+ Actions |
+
+
+
+
+ {% for estado in estados %}
+
+ | {{ estado.id }} |
+ {{ estado.descripcion | capitalize }} |
+ {{ 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..2c340ce
--- /dev/null
+++ b/app/Resources/views/estado/new.html.twig
@@ -0,0 +1,31 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+
Estado creation
+
+ {{ form_start(form, {'attr': {'novalidate': 'novalidate'}, 'action': path('estado_new')}) }}
+
+
+
+ {% if form.codigo.vars.errors[0].message is defined %}
+
+ {{ form.codigo.vars.errors[0].message }}
+
+
+ {% endif %}
+
+
+
+
+
+
+
+
+ {% 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..70f19b9
--- /dev/null
+++ b/app/Resources/views/estado/show.html.twig
@@ -0,0 +1,35 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+
Estado
+
+
+
+
+ | Id |
+ {{ estado.id }} |
+
+
+ | Codigo |
+ {{ estado.codigo }} |
+
+
+
+ | Descripcion |
+ {{ estado.descripcion }} |
+
+
+
+
+
+{% 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..3e49b9f
--- /dev/null
+++ b/app/Resources/views/municipio/edit.html.twig
@@ -0,0 +1,57 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+
Editar Municipio
+
+
+
+
+{% endblock %}
diff --git a/app/Resources/views/parroquia/edit.html.twig b/app/Resources/views/parroquia/edit.html.twig
new file mode 100644
index 0000000..8548c1c
--- /dev/null
+++ b/app/Resources/views/parroquia/edit.html.twig
@@ -0,0 +1,21 @@
+{% extends 'base.html.twig' %}
+
+{% block body %}
+