mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
70 lines
2.6 KiB
HTML
70 lines
2.6 KiB
HTML
{% extends 'base/layout.html' %}
|
|
{% load helpers %}
|
|
{% load form_helpers %}
|
|
|
|
{% block title %}Create {{ component_type }}{% endblock %}
|
|
|
|
{% render_errors form %}
|
|
|
|
{% block content %}
|
|
<form action="" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div class="row">
|
|
<div class="col col-md-8">
|
|
<div class="field-group">
|
|
<h4>{{ component_type|title }}</h4>
|
|
{% if form.non_field_errors %}
|
|
<div class="panel panel-danger">
|
|
<div class="panel-heading"><strong>Errors</strong></div>
|
|
<div class="panel-body">
|
|
{{ form.non_field_errors }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<strong>{{ component_type|bettertitle }}</strong>
|
|
</div>
|
|
<div class="panel-body">
|
|
{% for field in form.hidden_fields %}
|
|
{{ field }}
|
|
{% endfor %}
|
|
{% for field in form.visible_fields %}
|
|
{% if field.name not in form.custom_fields %}
|
|
{% render_field field %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% if form.custom_fields %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><strong>Custom Fields</strong></div>
|
|
<div class="panel-body">
|
|
{% render_custom_fields form %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row my-3">
|
|
<div class="col col-md-8 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>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|