mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{% extends 'base.html' %}
|
|
{% load helpers %}
|
|
{% load form_helpers %}
|
|
|
|
{% block content %}
|
|
<h1>{% block title %}{{ obj_type|bettertitle }} Import{% endblock %}</h1>
|
|
{% block tabs %}{% endblock %}
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
{% 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 %}
|
|
<form action="" method="post" class="form form-horizontal">
|
|
{% csrf_token %}
|
|
{% render_form form %}
|
|
<div class="form-group">
|
|
<div class="col-md-12 text-right">
|
|
<button type="submit" name="_create" class="btn btn-primary">Submit</button>
|
|
<button type="submit" name="_addanother" class="btn btn-primary">Submit and Import Another</button>
|
|
{% if return_url %}
|
|
<a href="{{ return_url }}" class="btn btn-default">Cancel</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|