mirror of
https://gitlab.silvrtree.co.uk/martind2000/old-silvrgit.git
synced 2025-02-06 06:49:15 +00:00
20 lines
386 B
Plaintext
20 lines
386 B
Plaintext
<% include ../partials/angular_head %>
|
|
|
|
<body ng-controller="TempController">
|
|
<div class="CSSTableGenerator">
|
|
<table>
|
|
<tr>
|
|
<td>Date</td>
|
|
<td>Reading</td>
|
|
</tr>
|
|
<tr ng-repeat="entry in tempData" >
|
|
<td>{{ entry.date }}</td><td>{{ entry.reading }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript" src="js/weight.js"></script>
|
|
</body>
|
|
|
|
</html> |