index.html 655 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head lang="en">
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>alerts</title>
  8. <style>
  9. * {
  10. font-family: 'verdana', 'Consolas', 'Microsoft YaHei';
  11. font-size: 9px;
  12. }
  13. .alert-list {
  14. line-height: 18px;
  15. }
  16. .item {
  17. margin-bottom: 5px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="alert-list">
  23. {% for item in sms_strings %}
  24. <div class="item">
  25. {{item}}
  26. </div>
  27. {% endfor %}
  28. </div>
  29. </body>
  30. </html>