123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>table</title>
- <link rel="stylesheet" href="/static/css/bootstrap.min.css">
- <script src="/static/js/jquery.min.js"></script>
- <script src="/static/js/bootstrap.min.js"></script>
- </head>
- <body>
- <div id="tableDiv0" class="table-responsive" style="height: calc(100% - 57px);overflow:scroll">
- <table class="table">
- <thead>
- <tr>
- <th>类型</th>
- <th>详细</th>
- </tr>
- </thead>
- <tbody>
- {% for key, values in data.items() %}
- {% if (key not in ["TASKID","flightid","color","南航"] and values !="") or (key in ["放行","维修人员","二送人员"] and values =="")%}
- <tr>
- <td>{{key}}</td>
- <td>{{values}}</td>
- </tr>
- {% endif %}
- {% endfor %}
- </tbody>
- </table>
- </div>
- </body>
- </html>
|