mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
{% extends '_base.html' %}
|
|
{% load form_helpers %}
|
|
|
|
{% block title %}
|
|
{% if obj %}Editing {{ obj_type }} {{ obj }}{% else %}Add a new {{ obj_type }}{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="post" class="form form-horizontal">
|
|
{% csrf_token %}
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<h3>{% if obj %}Editing {{ obj_type }} {{ obj }}{% else %}Add a new {{ obj_type }}{% endif %}</h3>
|
|
{% 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 %}
|
|
{% block form %}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><strong>Details</strong></div>
|
|
<div class="panel-body">
|
|
{% render_form form %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3 text-right">
|
|
{% if obj %}
|
|
<button type="submit" name="_update" class="btn btn-primary">Update</button>
|
|
{% else %}
|
|
<button type="submit" name="_create" class="btn btn-primary">Create</button>
|
|
<button type="submit" name="_addanother" class="btn btn-primary">Create and Add Another</button>
|
|
{% endif %}
|
|
<a href="{{ cancel_url }}" class="btn btn-default">Cancel</a>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|