Added VM detail page, Added VM setting page, Added VM pricing page,Added VM orders page, Added VM status page

This commit is contained in:
Levi 2016-05-04 00:16:41 -05:00
commit a99ea335c8
9 changed files with 226 additions and 20 deletions

View file

@ -19,11 +19,11 @@
<tbody>
{% for vm in vms %}
<tr>
<td scope="row">{{vm.id}}</td>
<td scope="row">{{vm.name}}</td>
<td>{{vm.hosting_company_name}}</td>
<td>{{vm.price}} CHF</td>
<td>
<button type="button" class="btn btn-default"><a href="">View Detail</a></button>
<button type="button" class="btn btn-default"><a href="{% url 'hosting:virtual_machines' vm.id %}">View Detail</a></button>
</td>
</tr>
{% endfor %}