2021-05-17 16:27:27 -04:00
|
|
|
{% extends 'base/layout.html' %}
|
2018-01-10 15:48:07 -05:00
|
|
|
{% load helpers %}
|
|
|
|
{% load form_helpers %}
|
|
|
|
|
2021-04-18 11:35:42 -07:00
|
|
|
{% block title %}Renaming {{ selected_objects|length }} {{ obj_type_plural|bettertitle }}{% endblock %}
|
|
|
|
|
2018-01-10 15:48:07 -05:00
|
|
|
{% block content %}
|
2021-04-21 11:31:28 -07:00
|
|
|
<div class="row mb-3">
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-7">
|
2021-07-11 21:24:36 -04:00
|
|
|
<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>
|
2021-04-21 11:31:28 -07:00
|
|
|
</div>
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-5">
|
2021-04-21 11:31:28 -07:00
|
|
|
<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 %}
|
2018-01-10 15:48:07 -05:00
|
|
|
</div>
|
2021-04-21 11:31:28 -07:00
|
|
|
</div>
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-12 my-3 text-end">
|
2021-04-21 11:31:28 -07:00
|
|
|
<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>
|
2018-01-10 15:48:07 -05:00
|
|
|
</div>
|
2021-04-21 11:31:28 -07:00
|
|
|
</div>
|
2021-05-17 16:27:27 -04:00
|
|
|
{% endblock content %}
|