work.html 973 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {%include '../inc/header.html'%}
  5. <link href="{{static_url('mobile/css/records.css')}}" rel="stylesheet">
  6. </head>
  7. <body>
  8. <section class="m-wrapper">
  9. {%include 'menu.html'%}
  10. </section>
  11. <section class="m-wrapper">
  12. {% for v in data['list'] %}
  13. {%set v = data['cate'][v] %}
  14. <h2>{{v['name']}}</h2>
  15. <section class="grid">
  16. <dl>
  17. <dt>
  18. <p>日期</p>
  19. <p>{{v['name']}}</p>
  20. <p>用量</p>
  21. </dt>
  22. {% for v1 in v['work'] %}
  23. <dd>
  24. <p><span>{{v1['workdates']}}</span></p><p><span>{{v1['content']}}</span></p><p><span>{{v1['amount']}}</span></p>
  25. </dd>
  26. {% end %}
  27. </dl>
  28. </section>
  29. {% end %}
  30. </section>
  31. {%include '../inc/script.html'%}
  32. </body>
  33. </html>