You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
{% load i18n %}
|
|
|
|
<form role="form" action="{% url 'abonapp:dev' gid uname %}" method="post"> {% csrf_token %}
|
|
<div class="modal-header primary">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title"><span class="glyphicon glyphicon-plus"></span>{% trans 'Add clutch' %}</h4>
|
|
</div>
|
|
|
|
{% include '_messages.html' %}
|
|
|
|
<div class="modal-body">
|
|
<div class="form-group-sm">
|
|
<label for="id_dev">{% trans 'Select the device' %}</label>
|
|
|
|
<div class="input-group">
|
|
<select name="dev" id="id_dev" class="form-control">
|
|
{% for device in devices %}
|
|
{% if device.has_attachable_to_subscriber %}
|
|
<option value="{{ device.pk }}">{{ device }}</option>
|
|
{% endif %}
|
|
{% empty %}
|
|
<option value="0">---</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="btn-group">
|
|
<button type="submit" class="btn btn-sm btn-primary">
|
|
<span class="glyphicon glyphicon-save"></span> {% trans 'Save' %}
|
|
</button>
|
|
<button type="reset" class="btn btn-sm btn-default">
|
|
<span class="glyphicon glyphicon-remove-circle"></span> {% trans 'Reset' %}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|