Initial commit. Modified the Meteor todos app to create the Petit Teton data tracking app. Has working data for sales. Requires a Mongo database.
This commit is contained in:
18
imports/ui/Measures.html
Normal file
18
imports/ui/Measures.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<template name="Measures">
|
||||
<table>
|
||||
<thead>
|
||||
<tr><td>Name</td></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each measures}}
|
||||
{{> MeasureRow}}
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
</template>
|
||||
|
||||
<template name="MeasureRow">
|
||||
<tr>
|
||||
<td>{{name}}</td>
|
||||
</tr>
|
||||
</template>
|
||||
Reference in New Issue
Block a user