DeviceTracker/front-end/meteor-device-spy/html/table.html

40 lines
761 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template name="devices_table">
<table class="table">
<thead>
<tr>
<th>Устройство</th>
<th>Владелец</th>
</tr>
</thead>
<tbody>
{{> devices_list}}
</tbody>
</table>
</template>
<template name="devices_list">
{{#each device}}
<tr>
<td>
<div>
<b>{{name}}</b>
</div>
<div>
{{os_type}} {{os_version}} {{screen_width}}x{{screen_height}} 3G: {{is_have_3g}}
</div>
</td>
<td>
<div>
<b>{{get_name_by_id}}</b>
</div>
<div>
{{get_checkin_date}}
</div>
</td>
</tr>
{{else}}
<td>
В списке нет устройств.
</td>
{{/each}}
</template>