VM-Dashboard-Manager/templates/edit.html

82 lines
2.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'layout.html' %}
{% block tytle %} Редактирование {{virtual_machine.name}} {% endblock%}
{% block style %}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
padding: 20px;
margin: 0;
}
h1 {
color: #333;
}
form {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
width: 300px;
margin: 20px auto;
}
input[type="text"] {
width: calc(100% - 22px);
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="text"]#appointment {
border: 1px solid red; /* обводка красным */
}
button[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #0056b3;
}
{% endblock %}
{% block body %}
<h1>Редактирование {{virtual_machine.name}}</h1>
<form action="/edit/{{virtual_machine.id}}" method="post">
<label for="hyper">Гипервизор:</label>
<input type="text" id="hyper" name="hyper" value="{{virtual_machine.hyper}}" placeholder="Гипервизор">
<label for="ip_addres">Адрес:</label>
<input type="text" id="ip_addres" name="ip_addres" value="{{virtual_machine.ip_addres}}" placeholder="ID на гипере">
<label for="name">Название:</label>
<input type="text" id="name" name="name" value="{{virtual_machine.name}}" placeholder="Название">
<label for="name" style="color: red;">Назначение (запрещено редактировать без согласования с Дмитрием Двойниковым!):</label>
<input type="text" id="appointment" name="appointment" value="{{virtual_machine.appointment}}" placeholder="Назначение" style="border: 1px solid red;">
<label for="os">Операционная система:</label>
<input type="text" id="os" name="os" value="{{virtual_machine.os}}" placeholder="Операционная система">
<label for="memory">ОЗУ:</label>
<input type="text" id="memory" name="memory" value="{{virtual_machine.memory}}" placeholder="Память (Гб)">
<label for="cpu">ЦПУ:</label>
<input type="text" id="cpu" name="cpu" value="{{virtual_machine.cpu}}" placeholder="ЦПУ">
<label for="technical">Техническая машина</label>
<input type="checkbox" id="technical" name="technical" {% if virtual_machine.technical %}checked{% endif %}>
<button type="submit">Сохранить</button>
</form>
{% endblock %}