added new files for demo
[myslice.git] / plugins / hazelnut.demo / static / hazelnut.html
diff --git a/plugins/hazelnut.demo/static/hazelnut.html b/plugins/hazelnut.demo/static/hazelnut.html
new file mode 100644 (file)
index 0000000..b49161b
--- /dev/null
@@ -0,0 +1,33 @@
+<div id='main-{{ domid }}'>
+  <table class='table table-striped table-bordered dataTable' id='{{domid}}__table'>
+    <thead>
+      <tr>
+        {% for column in columns %}
+        <th>{{ column }}</th>
+        {% endfor %} 
+        {% for column in hidden_columns %}
+        <th>{{ column }}</th>
+        {% endfor %} 
+        {% if checkboxes %}
+               <th>+/-</th>
+               {% endif %}
+         </tr>
+       </thead> 
+    <tbody>
+    </tbody>
+    <tfoot>
+      <tr>
+        {% for column in columns %}
+           <th>{{ column }}</th>
+        {% endfor %} 
+        {% for column in hidden_columns %}
+           <th>{{ column }}</th>
+        {% endfor %} 
+        {% if checkboxes %}
+               <th>+/-</th>
+               {% endif %}
+         </tr>
+    </tfoot> 
+  </table>
+</div>
+<div class="hazelnut-spacer"></div>