Explorar el Código

rename folder name for contain tables

weichen hace 4 años
padre
commit
6f49ad04e1

+ 1 - 1
backstage/templates/blogs.html

@@ -1,4 +1,4 @@
-{% extends "editor_tables/table.html" %}
+{% extends "tables/editor_table.html" %}
 {% block table_body %}
 {% for idx in range(0, length) %}
   <tbody>

+ 0 - 0
backstage/templates/editor_tables/table.html → backstage/templates/tables/editor_table.html


+ 42 - 0
backstage/templates/tables/manage_table.html

@@ -0,0 +1,42 @@
+{% extends "layout.html" %}
+{% block main %}
+<h1>{{ title }}</h1>
+{% for content in contents %}
+  <form action="{{ url_for('room_planner.update', page=page, section_class=content.sectionClass) }}" method="POST">
+  <table id="example" class="table table-striped table-bordered" cellspacing="0" width="60%">
+    <thead>
+      <tr>
+        <th>數量</th>
+        <th>類型</th>
+        <th>內容</th>
+        <th style="text-align:center;width:100px;">
+            <input class="btn btn-primary" type="submit" value="提交">
+        </th>
+      </tr>
+    </thead>
+    {% for key, value in content.items() %}
+      {% if key != 'sectionClass' %}
+        {% for data in value %}
+          <tbody>
+            <tr>
+              <td>{{ loop.index }}</td>
+              <td>{{ key }}</td>
+              <td>
+                <input name="{{ key }}-{{ loop.index }}" class="form-control form-control-lg" value="{{ data }}">
+              </td>
+              <td>
+                <div>
+                  <form action="#" method="POST">
+                    <input class="btn btn-danger" type="submit" value="刪除">
+                  </form>
+                </div>
+              </td>
+            </tr>
+          </tbody>
+        {% endfor %}
+      {% endif %}
+    {% endfor %}
+  </table>
+</form>
+{% endfor %}
+{% endblock main %}