AppFlowy-Cloud/admin_frontend/templates/components/workspace_usage.html

23 lines
576 B
HTML

<div>
<table class="red-table table">
<thead>
<tr>
<th>Workspace Name</th>
<th>Members</th>
<th>Members Limit</th>
<th>Document Storage</th>
<th>Object Storage</th>
<th>Object Storage Limit</th>
</tr>
</thead>
<tr>
<td> {{ name|escape }} </td>
<td> {{ member_count|escape }} </td>
<td> {{ member_limit|escape }} </td>
<td> {{ total_doc_size|escape }} </td>
<td> {{ total_blob_size|escape }} </td>
<td> {{ total_blob_limit|escape }} </td>
</tr>
</table>
</div>