1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

106 lines
3.4 KiB
HTML
Raw Normal View History

{% extends 'base/layout.html' %}
{% load form_helpers %}
{% load helpers %}
2021-05-23 13:21:52 -07:00
{% block title %}
{% if obj.pk %}Editing {{ obj_type }} {{ obj }}{% else %}Add a new {{ obj_type }}{% endif %}
{% endblock title %}
{% block controls %}
{% if obj and settings.DOCS_ROOT %}
<div class="controls">
<div class="control-group">
<a href="{{ obj|get_docs_url }}" target="_blank" class="btn btn-sm btn-outline-secondary" title="View model documentation">
<i class="mdi mdi-help-circle"></i> Help
</a>
</div>
</div>
{% endif %}
{% endblock controls %}
2021-08-06 16:11:02 -04:00
{% block tabs %}
<ul class="nav nav-tabs px-3">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="edit-form-tab" data-bs-toggle="tab" data-bs-target="#edit-form" type="button" role="tab" aria-controls="edit-form" aria-selected="true">
{% if obj.pk %}Edit{% else %}Create{% endif %}
</button>
</li>
</ul>
{% endblock tabs %}
{% block content-wrapper %}
<div class="tab-content">
<div class="tab-pane show active" id="edit-form" role="tabpanel" aria-labelledby="object-list-tab">
2021-08-13 13:35:23 -04:00
<form action="" method="post" enctype="multipart/form-data" class="form-object-edit">
2021-08-06 16:11:02 -04:00
{% csrf_token %}
2021-08-13 13:35:23 -04:00
{% for field in form.hidden_fields %}
{{ field }}
{% endfor %}
{% block form %}
{% if form.Meta.fieldsets %}
{# Render grouped fields according to Form #}
{% for group, fields in form.Meta.fieldsets %}
2021-08-25 15:03:19 -04:00
<div class="field-group my-4">
2021-08-24 13:59:54 -04:00
<div class="row mb-2">
<h5 class="offset-sm-3">{{ group }}</h5>
</div>
2021-08-13 13:35:23 -04:00
{% for name in fields %}
{% render_field form|getfield:name %}
2021-07-20 13:21:09 -04:00
{% endfor %}
2021-08-13 13:35:23 -04:00
</div>
2021-08-25 15:03:19 -04:00
{% if not forloop.last %}
<hr />
{% endif %}
2021-08-13 13:35:23 -04:00
{% endfor %}
{% if form.custom_fields %}
2021-08-25 15:03:19 -04:00
<hr />
<div class="field-group my-4">
<div class="row mb-2">
2021-08-24 13:59:54 -04:00
<h5 class="offset-sm-3">Custom Fields</h5>
</div>
2021-08-13 13:35:23 -04:00
{% render_custom_fields form %}
</div>
{% endif %}
{% if form.comments %}
2021-08-25 15:03:19 -04:00
<hr />
<div class="field-group my-4">
2021-08-13 13:35:23 -04:00
{% render_field form.comments label='Comments' %}
</div>
{% endif %}
{% else %}
{# Render all fields in a single group #}
2021-08-25 15:03:19 -04:00
<div class="field-group my-4">
2021-08-13 13:35:23 -04:00
{% block form_fields %}{% render_form form %}{% endblock %}
</div>
{% endif %}
{% endblock form %}
<div class="text-end my-3">
{% block buttons %}
<a class="btn btn-outline-danger" href="{{ return_url }}">Cancel</a>
{% if obj.pk %}
<button type="submit" name="_update" class="btn btn-primary">
Save
</button>
{% else %}
<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>
{% endif %}
{% endblock buttons %}
2021-08-06 16:11:02 -04:00
</div>
</form>
</div>
2021-08-06 16:11:02 -04:00
</div>
2021-08-06 16:11:02 -04:00
{% endblock content-wrapper %}