aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikraman Choudhury <vikraman.choudhury@gmail.com>2011-07-03 23:33:33 +0530
committerVikraman Choudhury <vikraman.choudhury@gmail.com>2011-07-03 23:33:33 +0530
commitf5f0837b3bb3a7bdbf3adde70a6defcb3819c602 (patch)
treeb4c908631f152dea7d5a04cb245ab2c88bdd3c30 /server/templates/feature.html
parentupdate module name to app in tests (diff)
downloadgentoostats-f5f0837b3bb3a7bdbf3adde70a6defcb3819c602.tar.gz
gentoostats-f5f0837b3bb3a7bdbf3adde70a6defcb3819c602.tar.bz2
gentoostats-f5f0837b3bb3a7bdbf3adde70a6defcb3819c602.zip
more stats pages
Diffstat (limited to 'server/templates/feature.html')
-rw-r--r--server/templates/feature.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/server/templates/feature.html b/server/templates/feature.html
new file mode 100644
index 0000000..03c4bbd
--- /dev/null
+++ b/server/templates/feature.html
@@ -0,0 +1,11 @@
+$def with (feature_data)
+$var title: Feature
+
+<table border="1">
+ <tr>
+ <th>Feature</th>
+ <th>Hosts</th>
+ </tr>
+ $for feature in feature_data.keys():
+ <tr><td>$feature</td><td>$feature_data[feature]['HOSTS']</td></tr>
+</table>