mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-11-28 16:40:27 +08:00
25 lines
536 B
Text
25 lines
536 B
Text
<%# locals: (obj: nil) %>
|
|
|
|
<table class="project-quota-table">
|
|
<caption>Quotas</caption>
|
|
<thead>
|
|
<tr>
|
|
<th>Resource</th>
|
|
<th>Quota</th>
|
|
<th>Usage</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% ["VmVCpu", "GithubRunnerVCpu", "PostgresVCpu", "KubernetesVCpu"].each do |type| %>
|
|
<tr>
|
|
<td><%= type %></td>
|
|
<td>
|
|
<%= obj.effective_quota_value(type) %>
|
|
</td>
|
|
<td>
|
|
<%= obj.current_resource_usage(type) %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|