appVerList.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  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. {% if lang == 'cn' %}
  8. <title>更新版本记录</title>
  9. {% else %}
  10. <title>Update version record</title>
  11. {% endif %}
  12. <meta name="description" content="Source code generated using layoutit.com">
  13. <!-- viewport的<meta>标签,这个标签可以修改在大部分的移动设备上面的显示,为了确保适当的绘制和触屏缩放。-->
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15. <meta name="author" content="LayoutIt!">
  16. <link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
  17. </head>
  18. <body>
  19. <div class="container-fluid">
  20. <div class="row">
  21. <div class="col-md-4">
  22. </div>
  23. <div class="col-md-4">
  24. {% for item in queryset_dict %}
  25. {% if lang == 'cn' %}
  26. <h3 style="text-align: center">新版本 :{{ item.fields.newApp_version }}</h3>
  27. {{ item.fields.content }}
  28. {% else %}
  29. <h3 style="text-align: center">new version :{{ item.fields.newApp_version }}</h3>
  30. {{ item.fields.content }}
  31. {% endif %}
  32. {% endfor %}
  33. </div>
  34. <div class="col-md-4">
  35. </div>
  36. </div>
  37. </div>
  38. </body>
  39. </html>