43 lines
1.3 KiB
HTML
43 lines
1.3 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>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 %}
|