| 12345678910111213141516171819202122232425 | {% extends "index.html" %}{% block title %}設備設定{% endblock %}{% block head %}{{ super() }}{% endblock %}{% block body %}    <table>  <tr>    <td>設備編碼</td>    <td>設備名稱</td>    <td>網路位置</td>    <td>區域編碼</td>  </tr> {%for col in a %}<tr>    {% for cell in col %}    <td>{{cell}}</td>    {% endfor %}</tr>{% endfor %}</table>{% endblock %}
 |