designer.tmpl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <html>
  2. <head>
  3. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
  4. </head>
  5. <body>
  6. </br>
  7. </br>
  8. <a class="btn btn-primary" href="/logout">logout</a>
  9. </br>
  10. </br>
  11. <img src="/static/logo_choozmo.webp" style="display: block; margin-left: auto; margin-right: auto; width: 150px;" >
  12. <h2 style="text-align:center;">幸福空間設計師SEO報告</h2>
  13. <div class="container">
  14. <table class="table">
  15. <thead>
  16. <tr style="background-color: #8600FF;">
  17. <th style="color: #eeeeee ;">設計師</th>
  18. <th style="color: #eeeeee ;">優先</th>
  19. <th style="color: #eeeeee ;">次之</th>
  20. <th style="color: #eeeeee ;">資料時間</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. {% for item in displaydata %}
  25. <tr>
  26. <td>{{ item.designer |safe}}</td>
  27. <td>{{ item.first |safe }}</td>
  28. <td>{{ item.second |safe }}</td>
  29. <td>{{ item.dt |safe }}</td>
  30. </tr>
  31. {% endfor %}
  32. </tbody>
  33. </table>
  34. </div>
  35. </body>
  36. </html>