Chromium Code Reviews| Index: utils/tests/template/applications.tmpl |
| diff --git a/utils/tests/template/applications.tmpl b/utils/tests/template/applications.tmpl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f5aa9cac15ecc6311df322f00caae4545291f294 |
| --- /dev/null |
| +++ b/utils/tests/template/applications.tmpl |
| @@ -0,0 +1,12 @@ |
| +template Applications(var products) { |
| + <div> |
| + ${#each products} |
| + <div> |
| + <span>${name}</span> |
| + <span>-</span> |
| + <span>${users}</span> |
| + </div> |
| + ${/each} |
| + </div> |
| +} |
| + |