Commit fda71fafd4462cca89e76332264a935119c0ea3d
1 parent
55ffb4bc47
Exists in
master
acercando en la inscripcion un poco mas
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
app/Resources/views/inscripcion/new.html.twig
@@ -3,9 +3,12 @@ | @@ -3,9 +3,12 @@ | ||
3 | {% block body %} | 3 | {% block body %} |
4 | <h1>Inscripcion creation</h1> | 4 | <h1>Inscripcion creation</h1> |
5 | {{ dump(form.children.idOfertaAcademica.children) }} | 5 | {{ dump(form.children.idOfertaAcademica.children) }} |
6 | + | ||
6 | {% form_theme form 'bootstrap_3_horizontal_layout.html.twig' %} | 7 | {% form_theme form 'bootstrap_3_horizontal_layout.html.twig' %} |
7 | {{ form_start(form) }} | 8 | {{ form_start(form) }} |
8 | - {{ form_widget(form.children.idOfertaAcademica.children.1) }} | 9 | + {% for f in form.children.idOfertaAcademica.children %} |
10 | + {{ form_widget(f) }} | ||
11 | + {% endfor %} | ||
9 | <input type="submit" value="Create" /> | 12 | <input type="submit" value="Create" /> |
10 | {{ form_end(form) }} | 13 | {{ form_end(form) }} |
11 | 14 |