summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/props.ezt')
-rw-r--r--include/props.ezt26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/props.ezt b/include/props.ezt
new file mode 100644
index 0000000..0f92c38
--- /dev/null
+++ b/include/props.ezt
@@ -0,0 +1,26 @@
+[if-any properties]
+<hr/>
+<div class="vc_properties">
+<h2>Properties</h2>
+<table cellspacing="1" cellpadding="2" class="auto">
+<thead>
+ <tr>
+ <th class="vc_header_sort">Name</th>
+ <th class="vc_header">Value</th>
+ </tr>
+</thead>
+<tbody>
+[for properties]
+ <tr class="vc_row_[if-index properties even]even[else]odd[end]">
+ <td><strong>[properties.name]</strong></td>
+ [if-any properties.undisplayable]
+ <td><em>Property value is undisplayable.</em></td>
+ [else]
+ <td style="white-space: pre;">[properties.value]</td>
+ [end]
+ </tr>
+[end]
+</tbody>
+</table>
+</div>
+[end]