for.html 792 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends 'base.html' %}
  2. {% block title %}遍历数据{% endblock %}
  3. {% block content %}
  4. <h2>我喜欢的水果</h2>
  5. <ul>
  6. {% for fruit in fruits %}
  7. <li>{{ fruit }}</li>
  8. {% endfor %}
  9. </ul>
  10. <h2>个人信息表</h2>
  11. <table class='mdui-table'>
  12. <thead>
  13. <tr>
  14. <th>id</th>
  15. <th>name</th>
  16. <th>sex</th>
  17. <th>height</th>
  18. <th>weight</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. {% for profile in profiles %}
  23. <tr>
  24. <td>{{ profile['id'] }}</td>
  25. <td>{{ profile['name'] }}</td>
  26. <td>{{ profile['sex'] }}</td>
  27. <td>{{ profile['height'] }}</td>
  28. <td>{{ profile['weight'] }}</td>
  29. </tr>
  30. {% endfor %}
  31. </tbody>
  32. </table>
  33. {% endblock %}