This repository has been archived on 2025-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vwa_project/web/templates/edit_order.html

61 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Editovat Objednávku</title>
<link rel="icon" href="{{url_for('static', filename='img/logo.webp')}}" type="image/x-icon">
<link rel="stylesheet" href="{{url_for('static', filename='css/style.css')}}">
</head>
<body>
<header>
<div class="header">
<div class="contact-info">
<span>Kontakt: 123 123 123 | Otevírací doba: 9-18 hod | auto@servis.cz </span>
</div>
<h1 class="nazev">
<a href="{{ url_for('home') }}" style="text-decoration: none;">
<img src="{{url_for('static', filename='img/logo.webp')}}" alt="Logo" class="logo">
</a>
Editovat Objednávku
</h1>
<div class="buttons">
<a href="{{ url_for('administrator') }}" class="button">Zpět na Tabulku Objednávek</a>
</div>
</div>
</header>
<div class="container">
<div class="content">
<h2>Editovat Objednávku</h2>
<form action="{{ url_for('edit_order', order_id=order['ID_Objednavky']) }}" method="post" class="form-container">
<label for="stav">Stav:</label>
<input type="text" id="stav" name="stav" value="{{ order['Stav'] }}" required>
<label for="id_zamestnance">Přiřazený zaměstnanec:</label>
<select id="id_zamestnance" name="id_zamestnance" required>
{% for user in users %}
<option value="{{ user['ID_Uzivatele'] }}" {% if user['ID_Uzivatele'] == order['ID_Zamestnance'] %}selected{% endif %}>
{{ user['Jmeno'] }} {{ user['Prijmeni'] }}
</option>
{% endfor %}
</select>
<label for="popis">Popis:</label>
<textarea id="popis" name="popis" rows="4" required>{{ order['Popis'] }}</textarea>
<label for="datum_konce">Datum konce:</label>
<input type="date" id="datum_konce" name="datum_konce" value="{{ order['Datum_Konce'] }}">
<button type="submit" class="button">Aktualizovat</button>
</form>
</div>
</div>
<footer class="footer" id="kontakt">
<div>Made by Hrachovina and Kirsch</div>
</footer>
</body>
</html>