templates/diocese/425_notre_choix_de_lectures.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Notre choix de lectures</title>
  5.     <!-- Required meta tags -->
  6.     <meta charset="UTF-8">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8.     <!-- Bootstrap CSS -->
  9.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" media="screen" type="text/css">
  10.     </head>
  11.     <body>
  12.     {{navbar|raw}}
  13.     <div class="container">
  14.     <div class="row">
  15.         <div class="span6">
  16.             <p><strong>Notre choix de lectures : </strong></p>
  17.     <table class="table table-striped">
  18.         <thead>
  19.             <tr>
  20.             <th scope="col">Partie de la Bible</th>
  21.             <th scope="col">Titre dans le lectionnaire</th>
  22.             <th scope="col">Titre dans votre livret</th>
  23.             <th scope="col">-</th>
  24.             </tr>
  25.         </thead>
  26.     {% for ecrits in masterdata %}
  27.         <tbody>
  28.             <tr>
  29.             <td>{{ecrits.typeTrd}}</td>
  30.             <td>{{ecrits.code}} {{ecrits.name|raw}} 
  31.             {% if ecrits.asterisk ==1 %}
  32.             *
  33.             {% else %}
  34.             {% endif %}
  35.             </td>
  36.             <td>{{ecrits.book|raw}}</td>
  37.             <td><a href="{{path('delete_from_booklet',{'code':ecrits.code})}}" class="btn btn-danger" role="button">Supprimer</a></td>
  38.             </tr>
  39.         <tbody>
  40.     {% endfor %}
  41.     </table>
  42.     {{message|raw}}
  43.     <br>
  44.     {{message2|raw}}
  45.     {{xml4.Recap2|raw}}
  46.     <br><br>
  47.     </div>
  48.     </div>
  49.     <div class="row">
  50.     <div class="col-lg-2">
  51.     {% block captcha_widget %}
  52.     {{ form(form) }}
  53.      <a href="{{path('425_notre_choix_de_lectures')}}" class="btn btn-light" role="button">Changer Captcha</a>
  54.     {% endblock %}
  55.     </div>
  56.     </div>
  57.     <h2>Vous pouvez également copier le lien-ci dessous : </h2>
  58.     https://pvmdev.pourvotremariage.net/recover_session/sessid={{sessId}}
  59.     </form>
  60.     </body>
  61.     </html>
  62.