console/SWSCloudAdministrator/templates/administrator/plans/create.html
2016-06-12 02:54:23 +03:00

47 lines
1.4 KiB
HTML

{% extends 'administrator/_layout.auth.html' %}
{% set title="Billing" %}
{% set subtitle="New Plan" %}
{% block content %}
<form action="{{ url_for('administrator.plans_create') }}" method="POST">
<table class="table table-bordered" width="100%">
<tbody>
<tr>
<td>Name</td>
<td><input type="text" name="name" value="" /></td>
</tr>
<tr>
<td>Price</td>
<td><input type="text" name="price" value="100" /></td>
</tr>
<tr>
<td>Status</td>
<td>
<select name="status">
<option>inactive</option>
<option>active</option>
</select>
</td>
</tr>
<tr>
<td>Storage (Mb)</td>
<td><input type="text" name="storage" value="" /></td>
</tr>
<tr>
<td>SWAP (Mb)</td>
<td><input type="text" name="swap" value="" /></td>
</tr>
<tr>
<td>Memory (Mb)</td>
<td><input type="text" name="memory" value="" /></td>
</tr>
<tr>
<td>Cores (int)</td>
<td><input type="text" name="cores" value="" /></td>
</tr>
</tbody>
</table>
<input type="submit" value="Create"/>
</form>
{% endblock %}