Skip to content

Instantly share code, notes, and snippets.

@rotemtam
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rotemtam/3cc7d46e5ff1bbf4eaaf to your computer and use it in GitHub Desktop.
Save rotemtam/3cc7d46e5ff1bbf4eaaf to your computer and use it in GitHub Desktop.
Angular controller and view for pi-mac-monitor
<table class="table table-striped" ng-if="stations.length">
<thead>
<tr>
<th>Station MAC</th>
<th>First Seen</th>
<th>Last Seen</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="station in stations">
<td>{{station['station_mac']}}</td>
<td>{{station['first_time_seen']}}</td>
<td>{{station['last_time_seen']}}</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment