Hotel/hotel/rooms/templates/index.html
Łukasz Jędyk 9b321e8026 style part 2
2019-01-13 17:37:21 +01:00

35 lines
863 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
<meta charset="UTF-8">
<title>Hotel INO Scrum</title>
</head>
<body>
<h1>Hotel INO Scrum</h1>
<center><h3>Lista pokoi dostępnych w naszym hotelu</h3></center>
<table id="hotels">
<th>Numer pokoju</th>
<th>Typ pokoju</th>
<th>Cena</th>
<th>Rezerwacja</th>
{% for room in rooms %}
<tr>
<td>{{ room.room_number }}</td>
<td>{{ room.room_type }}</td>
<td>{{ room.price }} zł</td>
<td>
{% if room.reserved %}
ZAREZERWOWANE
{% else %}
MIEJSCE NA PRZYCISK
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</body>
</html>