38 lines
997 B
HTML
38 lines
997 B
HTML
{% extends "admin/change_form.html" %}
|
|
{% load static %}
|
|
|
|
{% block object-tools %}
|
|
{{ block.super }}
|
|
{% if original %}
|
|
<div class="container-fluid">
|
|
<a class="btn btn-warning d-block w-100 text-center my-2"
|
|
href="{% url 'admin:botconfig-restart' original.pk %}">
|
|
Перезапустить бота
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
<style>
|
|
.container-fluid {
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
{{ block.super }}
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
const restartButton = document.querySelector('.btn-warning');
|
|
if (restartButton) {
|
|
restartButton.addEventListener('click', function(event) {
|
|
if (!confirm('Вы уверены, что хотите перезапустить бота?')) {
|
|
event.preventDefault();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
{% endblock %} |