modifier.html.twig 639 B

123456789101112131415161718
  1. {% extends "videotheque/base.html.twig" %}
  2. {% block title %}Modifier un film{% endblock %}
  3. {% block titre %}Modifier un film{% endblock %}
  4. {% block body %}
  5. {{ include('videotheque/form.html.twig') }}
  6. {% endblock %}
  7. {% block javascripts %}
  8. {#<script src="{{ asset('/bundles/app/assets/collectiontypeadd.js') }}"></script>
  9. <script>
  10. $(document).ready(function () {
  11. requete('{{ path('videotheque_ajax_realisateurs') }}', 'appbundle_film_realisateurs', 'add_realisateur');
  12. requete('{{ path('videotheque_ajax_genres') }}', 'appbundle_film_genres', 'add_genre');
  13. });
  14. </script>
  15. #}
  16. {% endblock %}