-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from gerMdz/101-entrada-desde-sección
Creando entrada desde section
- Loading branch information
Showing
14 changed files
with
100 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<button type="button" class="btn-close" data-bs-dismiss="modal" data-bs-target="#modalPlantillaWeb" aria-label="Close"></button> | ||
|
||
{{ form_start(form, {'action' : path('entrada_agregar_seccion', { 'id': index.id })}) }} | ||
<div class="modal-header panel-info"> | ||
<h5 class="modal-title" id="exampleModalLabel">Agregar Sección </h5> | ||
</div> | ||
|
||
{{ form_start(form, {'action' : path('entrada_agregar_seccion', { 'id': index.id })}) }} | ||
<div id="section-modal" class="modal-body"> | ||
|
||
{#<div class="modal-body">#} | ||
<div class="card"> | ||
<div class="card-header card-header-primary"> | ||
<h4 class="card-title "> Secciones </h4> | ||
</div> | ||
<div class="card-body"> | ||
|
||
<div class="col-sm-12 p-0"> | ||
<label for="{{ form.section.vars.id}}" class="label text-dark"> | ||
<i class="fa fa-list"> </i> Sección | ||
</label> | ||
{{ form_widget(form.section) }} | ||
</div> | ||
|
||
<div class="col-sm-12 p-0 text-center"> | ||
{{ form_row(form.save) }} | ||
</div> | ||
{{ form_widget(form._token) }} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{{ form_end(form, {'render_rest': false}) }} | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cerrar</button> | ||
|
||
</div> |