some settings
This commit is contained in:
parent
836187f2aa
commit
b0a76b88b4
5 changed files with 45 additions and 5 deletions
|
@ -27,6 +27,10 @@
|
|||
<th>CPU/Memory Ratio:</th>
|
||||
<td>{{ plan_data.plan.cpu_mem_ratio }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Term:</th>
|
||||
<td>{{ plan_data.plan.get_term_display }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Compute Plan Prices:</th>
|
||||
<td>
|
||||
|
@ -48,8 +52,11 @@
|
|||
<th>Variable Unit</th>
|
||||
<th>Service Level</th>
|
||||
<th>Units</th>
|
||||
<th>Plan Term</th>
|
||||
<th>Service Term</th>
|
||||
<th>Currency</th>
|
||||
<th>Final Price</th>
|
||||
<th>Discount</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -59,8 +66,17 @@
|
|||
<td>{{ price.variable_unit }}</td>
|
||||
<td>{{ price.service_level }}</td>
|
||||
<td>{{ price.units }}</td>
|
||||
<td>{{ price.plan_term }}</td>
|
||||
<td>{{ price.service_term }}</td>
|
||||
<td>{{ price.currency }}</td>
|
||||
<td>{{ price.price }}</td>
|
||||
<td>
|
||||
{% if price.discount_model %}
|
||||
{{ price.discount_model.name }}
|
||||
{% else %}
|
||||
-
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue