src/main/resources/net/tz/lift/templates-hidden/datatable.html
author Tomas Zeman <tzeman@volny.cz>
Fri, 10 Feb 2012 10:52:57 +0100
changeset 26 5679188fa8a0
parent 22 b039b9c22942
permissions -rw-r--r--
sbt: 0.11.0 -> 0.11.2, scala: 2.8.1 -> 2.8.2, lift: 2.3 -> 2.4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     1
<table class="list datatable">
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     2
  <thead>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     3
    <tr>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     4
      <th class="field-name">Field Name</th>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     5
    </tr>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     6
  </thead>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     7
  <tbody>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     8
    <tr class="row">
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
     9
      <td>Cell value</td>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    10
    </tr>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    11
  </tbody>
b039b9c22942 Added sample templates for datatable and panel
Tomas Zeman <tzeman@volny.cz>
parents:
diff changeset
    12
</table>