12345678910111213141516171819202122232425262728 |
- {% extends "index.html" %}
- {% block title %}系統設定{% endblock %}
- {% block head %}
- {{ super() }}
- {% endblock %}
- {% block body %}
- <div id="select_systems">
- <button>使用者</button>
- <button>聯絡人</button>
- <button>環境設置</button>
- <button>LINE群組設定</button>
- </div>
- <div id="info_table">
- <table>
- <th>使用者身分</th>
- <th>使用者名稱</th>
- <th>帳號</th>
- <th>電子郵件</th>
- <th>權限設定</th>
- <th>修改密碼</th>
- <th>備註</th>
- <th>+新增</th>
- </table>
- </div>
- {% endblock %}
|