瀏覽代碼

更新 'templates/device.html'

nemo0526 3 年之前
父節點
當前提交
6e0dc2e8f9
共有 1 個文件被更改,包括 18 次插入6 次删除
  1. 18 6
      templates/device.html

+ 18 - 6
templates/device.html

@@ -6,10 +6,22 @@
 
 
 {% block body %}
-    <div id="select_devices">
-        <button>設備</button>
-        <button>通道</button>
-        <button>事件</button>
-
-    </div>
+    <table>
+  <tr>
+    <td>設備編碼</td>
+    <td>設備名稱</td>
+    <td>網路位置</td>
+    <td>區域編碼</td>
+    <td>區域編碼2</td>
+    <td>區域編碼3</td>
+  </tr>
+ 
+{%for col in a %}
+<tr>
+    {% for cell in col %}
+    <td>{{cell}}</td>
+    {% endfor %}
+</tr>
+{% endfor %}
+</table>
 {% endblock %}