system.html 673 B

12345678910111213141516171819202122232425262728
  1. {% extends "index.html" %}
  2. {% block title %}系統設定{% endblock %}
  3. {% block head %}
  4. {{ super() }}
  5. {% endblock %}
  6. {% block body %}
  7. <div id="select_systems">
  8. <button>使用者</button>
  9. <button>聯絡人</button>
  10. <button>環境設置</button>
  11. <button>LINE群組設定</button>
  12. </div>
  13. <div id="info_table">
  14. <table>
  15. <th>使用者身分</th>
  16. <th>使用者名稱</th>
  17. <th>帳號</th>
  18. <th>電子郵件</th>
  19. <th>權限設定</th>
  20. <th>修改密碼</th>
  21. <th>備註</th>
  22. <th>+新增</th>
  23. </table>
  24. </div>
  25. {% endblock %}