This file contains hidden or 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
| {% include '_xeditable.html.twig' with { | |
| id: "", | |
| clase: "", | |
| placement: "" | |
| name: "", | |
| type: "", | |
| pk: , | |
| url: '', | |
| datos: {}, | |
| originalTitle: "", |
This file contains hidden or 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
| {% include '_listGroup.html.twig' with { | |
| group : [ | |
| { | |
| url : 'url', | |
| class : 'class', | |
| attrs : 'attrs', | |
| heading : 'heading', | |
| text : 'text', | |
| badge : { | |
| url : 'url', |
This file contains hidden or 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
| {% include '_listGroup_item.html.twig' with { | |
| url : 'url', | |
| class : 'class', | |
| attrs : 'attrs', | |
| heading : 'heading', | |
| text : 'text', | |
| badge : { | |
| url : 'url', | |
| class : 'class', | |
| attrs : 'attrs', |
This file contains hidden or 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
| String class Class | |
| String id Id | |
| String attrs Atributos extra | |
| String tipo nombre de la etiqueta "audio", "video" o "img" | |
| Collection sources [ | |
| { | |
| String src Src o Url del Archivo de Audio, Video o Img | |
| String type Tipo del Archivo o Video (audio/mp3, video/mp4, etc) | |
| }, | |
| ] |
This file contains hidden or 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
| {% include '_botones.html.twig' with { | |
| 'buttonset': 'horizontal', | |
| 'botones' : [ | |
| { | |
| 'url' : '', | |
| 'label' : 'Index 1' | |
| }, | |
| { | |
| 'url' : '', | |
| 'label' : 'Index 2' |
This file contains hidden or 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
| {% include '_boton.html.twig' with { | |
| 'url' : '', | |
| 'label' : '', | |
| 'class' : '', | |
| 'list' : [], | |
| 'type' : '', | |
| 'sizing' : '', | |
| 'view' : '', | |
| 'es_item' : false, | |
| 'dropdown' : true, |
This file contains hidden or 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
| {% include '_box.html.twig' with { | |
| is_row : true, | |
| num : null, | |
| contenido : { | |
| id : 'id_box', | |
| url : 'url/del/header', | |
| open : 'right', | |
| texto : 'Encabezado', | |
| cols : [{ | |
| tipo : "img", |
This file contains hidden or 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
| {% include '_boxes.html.twig' with { | |
| 'boxes' : [ | |
| { | |
| is_row : true, | |
| num : null, | |
| contenido : { | |
| id : 'id_box', | |
| url : 'url/del/header', | |
| open : 'right', | |
| texto : 'Encabezado', |
This file contains hidden or 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
| Routing.generate('route_id', /* your params */, true) |
This file contains hidden or 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
| BootstrapDialog.alert('Hi Apple!', function(){ | |
| alert('Hi Orange!'); | |
| }); | |
| BootstrapDialog.confirm('Hi Apple, are you sure?', function(result){ | |
| if(result) { | |
| alert('Yup.'); | |
| }else { | |
| alert('Nope.'); | |
| } |