edit_modal.html.twig 734 B

1234567891011121314151617181920212223
  1. {#
  2. This file is part of the Sonata package.
  3. (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  4. For the full copyright and license information, please view the LICENSE
  5. file that was distributed with this source code.
  6. #}
  7. <div class="modal fade" id="field_dialog_{{ id }}" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  8. <div class="modal-dialog modal-lg">
  9. <div class="modal-content">
  10. <div class="modal-header">
  11. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  12. <h4 class="modal-title"></h4>
  13. </div>
  14. <div class="modal-body">
  15. </div>
  16. </div>
  17. </div>
  18. </div>