MachineManagerApp/www/pages/clients.html

35 lines
994 B
HTML

<!--
Copyright 2020 Netsyms Technologies.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<div class="page" data-name="clients">
<div class="navbar">
<div class="navbar-bg"></div>
<div class="navbar-inner">
<div class="left">
<a href="#" class="link icon-only back">
<i class="icon icon-back"></i>
</a>
</div>
<div class="title">Clients ({{q}})</div>
</div>
</div>
<div class="page-content">
<div class="list links-list no-margin-top">
<ul>
{{#each clients}}
<li>
<a href="/client/{{id}}">
{{name}}
</a>
</li>
{{/each}}
</ul>
</div>
</div>
</div>