fixed payment issues

This commit is contained in:
Levi 2017-05-06 17:36:02 -05:00
commit ac9ba1480b
2 changed files with 6 additions and 5 deletions

View file

@ -11,11 +11,11 @@
<form method="POST" action="">
{% csrf_token %}
<div class="form-group">
Select VM Type:
Select VM:
<select name="vm_template">
{% for vm in vm_types %}
<option value="{{vm.id}}">CORE: {{vm.cores}}- RAM: {{vm.memory}} - SSD: {{vm.disk_size}} </option>
<option value="{{vm.id}}">CORE: {{vm.cores}}, RAM: {{vm.memory}}, SSD: {{vm.disk_size}} </option>
{% endfor %}
</select>