diff options
author | Vikraman Choudhury <vikraman.choudhury@gmail.com> | 2011-07-03 23:33:33 +0530 |
---|---|---|
committer | Vikraman Choudhury <vikraman.choudhury@gmail.com> | 2011-07-03 23:33:33 +0530 |
commit | f5f0837b3bb3a7bdbf3adde70a6defcb3819c602 (patch) | |
tree | b4c908631f152dea7d5a04cb245ab2c88bdd3c30 /server/templates/feature.html | |
parent | update module name to app in tests (diff) | |
download | gentoostats-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.html | 11 |
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> |