modyfikacja bazy + formularz dodawania klienta
This commit is contained in:
commit
4a7996a075
BIN
hotel/db.sqlite3
BIN
hotel/db.sqlite3
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
BIN
hotel/rooms/static/images/background2.jpg
Normal file
BIN
hotel/rooms/static/images/background2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 776 KiB |
BIN
hotel/rooms/static/images/background3.jpg
Normal file
BIN
hotel/rooms/static/images/background3.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 MiB |
BIN
hotel/rooms/static/images/background4.jpg
Normal file
BIN
hotel/rooms/static/images/background4.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 633 KiB |
BIN
hotel/rooms/static/images/background5.jpg
Normal file
BIN
hotel/rooms/static/images/background5.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.6 MiB |
@ -22,11 +22,19 @@
|
||||
color: white;
|
||||
}
|
||||
|
||||
html {
|
||||
background: url(images/background.jpg) no-repeat center center fixed;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
#images {
|
||||
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
|
||||
border-collapse: collapse;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
#images th {
|
||||
border: 1px solid #ddd;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
body {
|
||||
background: url(images/background1.jpg) no-repeat center center fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
|
@ -5,11 +5,21 @@
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
|
||||
<meta charset="UTF-8">
|
||||
<title>Hotel INO Scrum</title>
|
||||
<script>
|
||||
function changeBackground(imageUrl) {
|
||||
document.body.style.background = "url(" + imageUrl + ") no-repeat center center fixed";
|
||||
document.body.style.backgroundSize = "cover";
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hotel INO Scrum</h1>
|
||||
<center><h3>Lista pokoi dostępnych w naszym hotelu</h3></center>
|
||||
<table id="hotels">
|
||||
<col style="width:10%">
|
||||
<col style="width:30%">
|
||||
<col style="width:20%">
|
||||
<col style="width:40%">
|
||||
<th>Numer pokoju</th>
|
||||
<th>Typ pokoju</th>
|
||||
<th>Cena</th>
|
||||
@ -41,6 +51,15 @@
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
<br><br>
|
||||
<center>
|
||||
<table id="images">
|
||||
<th><input type="image" src="static/images/background1.jpg" height="150px" width="250px" onClick="changeBackground(imageUrl='static/images/background1.jpg')"/></th>
|
||||
<th><input type="image" src="static/images/background2.jpg" height="150px" width="250px" onClick="changeBackground(imageUrl='static/images/background2.jpg')"/></th>
|
||||
<th><input type="image" src="static/images/background3.jpg" height="150px" width="250px" onClick="changeBackground(imageUrl='static/images/background3.jpg')"/></th>
|
||||
<th><input type="image" src="static/images/background4.jpg" height="150px" width="250px" onClick="changeBackground(imageUrl='static/images/background4.jpg')"/></th>
|
||||
<th><input type="image" src="static/images/background5.jpg" height="150px" width="250px" onClick="changeBackground(imageUrl='static/images/background5.jpg')"/></th>
|
||||
</table>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -9,6 +9,7 @@ from .forms import *
|
||||
|
||||
def index(request):
|
||||
rooms = Room.objects.all()
|
||||
rooms = rooms.order_by('room_number')
|
||||
template = loader.get_template('index.html')
|
||||
|
||||
return HttpResponse(template.render({'rooms': rooms}, request))
|
||||
@ -27,6 +28,7 @@ def reservation(request):
|
||||
return HttpResponse(template.render({'status': status}, request))
|
||||
|
||||
|
||||
|
||||
def addclient(request):
|
||||
if request.method == "GET":
|
||||
form = ClientForm()
|
||||
@ -35,4 +37,5 @@ def addclient(request):
|
||||
elif request.method == "POST":
|
||||
client = ClientForm(request.POST)
|
||||
client.save()
|
||||
return HttpResponse()
|
||||
return HttpResponse()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user