37 lines
760 B
Handlebars
37 lines
760 B
Handlebars
<section>
|
|
<h4 class="divider">Summary</h4>
|
|
<div class="info">
|
|
<span>Count of Tables</span>
|
|
<span>{{ tableCount }}</span>
|
|
</div>
|
|
{{!-- <div class="info">
|
|
<span>Your Total Rows</span>
|
|
<span>{{ userRowCount }}</span>
|
|
</div>
|
|
<div class="info">
|
|
<span>Your Private Rows</span>
|
|
<span>{{ userPrivateRowCount }}</span>
|
|
</div>
|
|
<div class="info">
|
|
<span>Global Row Count</span>
|
|
<span>{{ globalRowCount }}</span>
|
|
</div> --}}
|
|
</section>
|
|
|
|
<section>
|
|
<h4 class="divider">Apps</h4>
|
|
<button
|
|
type="button"
|
|
data-action="openStats"
|
|
>
|
|
View Statistics
|
|
</button>
|
|
<button
|
|
type="button"
|
|
data-action="createTable"
|
|
>
|
|
Create New Table
|
|
</button>
|
|
<button type="button">Manage Tables</button>
|
|
<button type="button">Manage Rows</button>
|
|
</section>
|