short-term and long-term capsuls
This commit is contained in:
@ -20,15 +20,14 @@
|
||||
f1-x $27.50 3 4096M 25G 4TB
|
||||
f1-xx $50.00 4 8192M 25G 5TB
|
||||
|
||||
* net is calculated as a per-month average
|
||||
* vms are billed for a minimum of 24 hours upon creation
|
||||
* all VMs come standard with one public IPv4 address</pre>
|
||||
* all VMs come standard with one public IPv4 address
|
||||
* vms are billed for a minimum of 1 hour upon creation</pre>
|
||||
<pre>
|
||||
Your <a href="/console/account-balance">account balance</a>: ${{ account_balance }}
|
||||
</pre>
|
||||
{% if cant_afford %}
|
||||
<p>Please <a href="/console/account-balance">fund your account</a> in order to create Capsuls</p>
|
||||
<p>(At least one month of funding is required)</p>
|
||||
<p>(At least two hours worth of funding is required)</p>
|
||||
{% elif no_ssh_public_keys %}
|
||||
<p>You don't have any ssh public keys yet.</p>
|
||||
<p>You must <a href="/console/ssh">upload one</a> before you can create a Capsul.</p>
|
||||
@ -41,9 +40,29 @@
|
||||
<div class="row justify-start">
|
||||
<label class="align" for="size">Capsul Size</label>
|
||||
<select id="size" name="size">
|
||||
{% for size in vm_sizes.keys() %}<option value="{{ size }}">{{ size }}</option>{% endfor %}
|
||||
{% for size in vm_sizes.keys() %}
|
||||
{% if size in month_funded_vm_sizes %}
|
||||
<option value="{{ size }}">{{ size }}</option>
|
||||
{% else %}
|
||||
<option value="{{ size }}">{{ size }} (short-term)</option>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
<div class="row justify-start">
|
||||
<pre>
|
||||
<b>NEW!</b> Short-term and Long-term Capsuls:
|
||||
|
||||
You may create a capsul even if your account balance won't
|
||||
fund it for long. It will be marked "short-term" and won't
|
||||
be backed up.
|
||||
|
||||
Short-term capsuls will be deleted as soon as your account
|
||||
balance reaches zero, while long-term capsuls get a
|
||||
non-payment grace period before they're are deleted.
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<div class="row justify-start">
|
||||
<label class="align" for="os">Operating System</label>
|
||||
<select id="os" name="os">
|
||||
|
Reference in New Issue
Block a user