table.html 804 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>table</title>
  6. <link rel="stylesheet" href="/static/css/bootstrap.min.css">
  7. <script src="/static/js/jquery.min.js"></script>
  8. <script src="/static/js/bootstrap.min.js"></script>
  9. </head>
  10. <body>
  11. <div id="tableDiv0" class="table-responsive" style="height: calc(100% - 57px);overflow:scroll">
  12. <table class="table">
  13. <thead>
  14. <tr>
  15. <th>类型</th>
  16. <th>详细</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for key, values in data.items() %}
  21. {% if (key not in ["TASKID","flightid","color","南航"] and values !="") or (key in ["放行","维修人员","二送人员"] and values =="")%}
  22. <tr>
  23. <td>{{key}}</td>
  24. <td>{{values}}</td>
  25. </tr>
  26. {% endif %}
  27. {% endfor %}
  28. </tbody>
  29. </table>
  30. </div>
  31. </body>
  32. </html>