mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
{% extends 'base/layout.html' %}
|
|
{% load helpers %}
|
|
{% load form_helpers %}
|
|
|
|
{% block title %}Renaming {{ selected_objects|length }} {{ obj_type_plural|bettertitle }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-7">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Current Name</th>
|
|
<th>New Name</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for obj in selected_objects %}
|
|
<tr{% if obj.new_name and obj.name != obj.new_name %} class="success"{% endif %}>
|
|
<td>{{ obj.name }}</td>
|
|
<td>{{ obj.new_name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="col col-md-5">
|
|
<form action="" method="post" class="form form-horizontal">
|
|
{% csrf_token %}
|
|
<div class="card">
|
|
<h5 class="card-header">Rename</h5>
|
|
<div class="card-body">
|
|
{% render_form form %}
|
|
</div>
|
|
</div>
|
|
<div class="col col-md-12 my-3 text-end">
|
|
<a href="{{ return_url }}" class="btn btn-outline-danger">Cancel</a>
|
|
<button type="submit" name="_preview" class="btn btn-primary">Preview</button>
|
|
{% if '_preview' in request.POST and not form.errors %}
|
|
<button type="submit" name="_apply" class="btn btn-primary">Apply</button>
|
|
{% endif %}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|