vpnmanager/templates/manager/add.html

36 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% load manager %}
{% block content %}
<form action="#" method="post">
{% csrf_token %}
<div class="form-group">
<label for="serial">Serial Number</label>
<input type="text" class="form-control" required id="serial" name="serial" placeholder="Serial Number"></input>
</div>
<div class="form-group">
<label for="name">Device Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Enter Device Name (Optional)"></input>
</div>
<div class="form-group">
<label for="organization">Organization</label>
<select required class="custom-select mr-sm-2" id="organization" name="organization">
{% userOrgas as orgas %}
{% for choice in orgas %}
<option value="{{ choice.id }}">{{ choice.name }}</option>
{% endfor %}
</select>
</div>
<div class="form-group">
<label for="model">Model</label>
<select required class="custom-select mr-sm-2" id="model" name="model">
{% for choice in models %}
<option value="{{ choice.id }}">{{ choice.name }}</option>
{% endfor %}
</select>
</div>
<button type="submit" class="btn btn-success">Create Device</button>
<a class="btn btn-danger" href="/devices/" role="button">Cancel</a>
</form>
{% endblock %}