1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <html>
- <head>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
- </head>
- <body>
- </br>
- </br>
- <a class="btn btn-primary" href="/logout">logout</a>
- </br>
- </br>
- <img src="/static/logo_choozmo.webp" style="display: block; margin-left: auto; margin-right: auto; width: 150px;" >
- <h2 style="text-align:center;">幸福空間設計師SEO報告</h2>
- <div class="container">
- <table class="table">
- <thead>
- <tr style="background-color: #8600FF;">
- <th style="color: #eeeeee ;">設計師</th>
- <th style="color: #eeeeee ;">優先</th>
- <th style="color: #eeeeee ;">次之</th>
- <th style="color: #eeeeee ;">資料時間</th>
- </tr>
- </thead>
- <tbody>
- {% for item in displaydata %}
- <tr>
- <td>{{ item.designer |safe}}</td>
- <td>{{ item.first |safe }}</td>
- <td>{{ item.second |safe }}</td>
- <td>{{ item.dt |safe }}</td>
- </tr>
- {% endfor %}
-
- </tbody>
- </table>
- </div>
- </body>
- </html>
|