2021-05-17 16:27:27 -04:00
|
|
|
{% extends 'base/layout.html' %}
|
2021-07-01 10:48:24 -04:00
|
|
|
{% load helpers %}
|
2016-06-15 13:27:12 -04:00
|
|
|
{% load form_helpers %}
|
|
|
|
|
2020-02-05 12:36:38 -05:00
|
|
|
{% block title %}Create {{ component_type }}{% endblock %}
|
2016-06-15 13:27:12 -04:00
|
|
|
|
2021-03-14 17:26:33 -07:00
|
|
|
{% render_errors form %}
|
|
|
|
|
2017-02-27 16:52:13 -05:00
|
|
|
{% block content %}
|
2021-04-22 15:58:57 -07:00
|
|
|
<form action="" method="post" enctype="multipart/form-data">
|
2016-06-15 13:27:12 -04:00
|
|
|
{% csrf_token %}
|
|
|
|
<div class="row">
|
2021-07-20 00:16:13 -07:00
|
|
|
<div class="col col-md-8 offset-md-2 col-lg-6 offset-lg-3">
|
2021-03-14 17:26:33 -07:00
|
|
|
<div class="field-group">
|
2021-07-22 12:31:50 -04:00
|
|
|
<h5 class="text-center">{{ component_type|title }}</h5>
|
2021-07-20 00:16:13 -07:00
|
|
|
{% for field in form.hidden_fields %}
|
|
|
|
{{ field }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for field in form.visible_fields %}
|
|
|
|
{% if not form.custom_fields or field.name not in form.custom_fields %}
|
|
|
|
{% render_field field %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2021-07-06 12:10:29 -04:00
|
|
|
{% if form.custom_fields %}
|
2021-07-20 00:16:13 -07:00
|
|
|
<div class="field-group">
|
2021-07-22 12:31:50 -04:00
|
|
|
<h5 class="text-center">Custom Fields</h5>
|
2021-07-20 00:16:13 -07:00
|
|
|
{% render_custom_fields form %}
|
2021-07-06 12:10:29 -04:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2021-03-13 11:16:29 -07:00
|
|
|
</div>
|
2016-06-15 13:27:12 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-14 17:26:33 -07:00
|
|
|
<div class="row my-3">
|
2021-07-20 00:16:13 -07:00
|
|
|
<div class="col col-md-8 offset-md-2 col-lg-6 offset-lg-3 text-end">
|
|
|
|
{% block buttons %}
|
|
|
|
<a class="btn btn-outline-danger" href="{{ return_url }}">Cancel</a>
|
|
|
|
|
|
|
|
{% if component_type == 'interface' and perms.ipam.add_ipaddress %}
|
|
|
|
<button type="submit" name="_assignip" class="btn btn-outline-success">
|
|
|
|
Create & Assign IP Address
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<button type="submit" name="_addanother" class="btn btn-outline-primary">
|
|
|
|
Create & Add Another
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button type="submit" name="_create" class="btn btn-primary">
|
|
|
|
Create
|
|
|
|
</button>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2021-03-14 17:26:33 -07:00
|
|
|
</div>
|
2016-06-15 13:27:12 -04:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|