history.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% extends "index.html" %}
  2. {% block title %}歷史資料{% endblock %}
  3. {% block head %}
  4. {{ super() }}
  5. {% endblock %}
  6. {% block body %}
  7. <div id="select_histories">
  8. <div id="select_histories_1">
  9. <select>
  10. <option>選擇設備</option>
  11. </select>
  12. <select>
  13. <option>選擇通道</option>
  14. </select>
  15. <select>
  16. <option>選擇欄位</option>
  17. </select>
  18. <select>
  19. <option>選擇項目</option>
  20. </select>
  21. <button id="search">搜尋</button>
  22. </div>
  23. <div id="select_histories_2">
  24. <select>
  25. <option>開始日期</option>
  26. </select>
  27. <select>
  28. <option>開始時間</option>
  29. </select>
  30. <select>
  31. <option>結束日期</option>
  32. </select>
  33. <select>
  34. <option>結束時間</option>
  35. </select>
  36. </div>
  37. </div>
  38. {% endblock %}