Guest User

Untitled

a guest
Jan 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <div class="card">
  2. <div class="card-header-spe">
  3. <p style="text-align:left;">
  4. Delivery Tour
  5. <span style="float:right;">
  6. <a class=" card-category btn btn-primary" href="{{ url_for('deliver', client_id=client.id )}}">Add New</a>
  7. </span>
  8. </p>
  9. </div>
  10. <table class="table table-striped table-hover">
  11. <thead>
  12. <tr>
  13. <th scope="col">Title</th>
  14. <th scope="col">Description</th>
  15. <th scope="col">Schedule</th>
  16. <th scope="col">Driver</th>
  17. </tr>
  18. </thead>
  19.  
  20. <tbody>
  21.  
  22. <tr>
  23. {% for deliv in delivery %}
  24. <th scope="row">{{ deliv.title }}</th>
  25. <td>{{ deliv.description }}</td>
  26. <td >{{ deliv.schedule }} </td>
  27. {% if deliv.driver_assigned %}
  28. {% for d in driver %}
  29. {% if d.id == deliv.driver_assigned %}
  30. <td>{{d.first_name}}</td>
  31. {% endif %}
  32. {% endfor %}
  33. {% else %}
  34. <td></td>
  35. {% endif %}
  36. </tr>
  37. {% endfor %}
  38.  
  39.  
  40. </tbody>
  41. </table>
  42. </div>
Add Comment
Please, Sign In to add comment