ubicloud/views/admin/extras/Project.erb
2025-11-18 10:32:37 +03:00

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>