templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Home{% endblock %}
  3. {% block body %}
  4.     <!-- Page Header-->
  5.     <header class="page-header">
  6.         <div class="container-fluid">
  7.             <h2 class="no-margin-bottom">overzicht</h2>
  8.         </div>
  9.     </header>
  10.     <!-- Info Section-->
  11.     <section class="feeds">
  12.         <div class="container-fluid">
  13.             <div class="row">
  14.                 <!-- opkomende facturen -->
  15.                 <div class="col-lg-4">
  16.                     <div class="opkomende-facturen card">
  17.                         <div class="card-header d-flex align-items-center">
  18.                         <h2 class="h3">opkomende facturen</h2>
  19.                         </div>
  20.                         <div class="card-body no-padding">
  21.                             <table class="table">
  22.                                 <thead>
  23.                                     <tr>
  24.                                         <th scope="col">klant</th>
  25.                                         <th scope="col">datum</th>
  26.                                         <th scope="col">&nbsp;</th>
  27.                                     </tr>
  28.                                 </thead>
  29.                                 <tbody>
  30.                                 {% for upcomingInvoice in upcomingInvoices %}
  31.                                     <tr>
  32.                                         <td>{{ upcomingInvoice.customer }}</td>
  33.                                         <td>{{ upcomingInvoice.date|date("d/m/Y") }}</td>
  34.                                         <td><i class="fas fa-check-circle"></i></td>
  35.                                     </tr>
  36.                                 {% endfor %}
  37.                                 </tbody>
  38.                             </table>
  39.                         </div>
  40.                     </div>
  41.                 </div>
  42.                 <!-- inlog -->
  43.                 <div class="col-lg-4">
  44.                     <div class="inloggen card">
  45.                         <div class="card-header d-flex align-items-center">
  46.                         <h2 class="h3">handige inloggegevens</h2>
  47.                         </div>
  48.                         <div class="card-body no-padding">
  49.                             <table class="table">
  50.                                 <thead>
  51.                                     <tr>
  52.                                         <th scope="col">&nbsp;</th>
  53.                                         <th scope="col">gebruiker</th>
  54.                                         <th scope="col">wachtwoord</th>
  55.                                         <th scope="col">&nbsp;</th>
  56.                                     </tr>
  57.                                 </thead>
  58.                                 <tbody>
  59.                                 {% for loginCredential in loginCredentials %}
  60.                                     <tr>
  61.                                         <td>{{ loginCredential.externalSite }}</td>
  62.                                         <td>{{ loginCredential.user }}</td>
  63.                                         <td>{{ loginCredential.password }}</td>
  64.                                         <td><i class="fas fa-external-link-alt"></i></td>
  65.                                     </tr>
  66.                                 {% endfor %}
  67.                                 </tbody>
  68.                             </table>
  69.                         </div>
  70.                     </div>
  71.                 </div>
  72.                 <!-- bouwputten -->
  73.                 <div class="col-lg-4">
  74.                     <div class="bouwputten card">
  75.                         <div class="card-header d-flex align-items-center">           
  76.                         <h2 class="h3">bouwputten</h2>
  77.                         </div>
  78.                         <div class="card-body no-padding">
  79.                             <table class="table">
  80.                                 <thead>
  81.                                     <tr>
  82.                                         <th scope="col">#</th>
  83.                                         <th scope="col">klant</th>
  84.                                         <th scope="col">&nbsp;</th>
  85.                                     </tr>
  86.                                 </thead>
  87.                                 <tbody>
  88.                                 {% for buildingSite in buildingSites %}
  89.                                     <tr>
  90.                                         <td>{{ buildingSite.number}}</td>
  91.                                         <td>
  92.                                             <form class="form-inline">
  93.                                                 <input type="text" class="form-control mb-2 mr-sm-2" id="inlineFormInputName2" placeholder="nog beschikbaar" value="{{ buildingSite.content }}">
  94.                                             </form>
  95.                                         </td>
  96.                                         <td><i class="fas fa-check-circle"></i></td>
  97.                                     </tr>
  98.                                 {% endfor %}
  99.                                 </tbody>
  100.                             </table>
  101.                         </div>
  102.                     </div>
  103.                 </div>
  104.             </div>
  105.         </div>
  106.     </section>
  107. {% endblock %}