поправил страницу выбора места

This commit is contained in:
Андрей Дувакин 2024-04-20 17:46:00 +05:00
parent c08a38f313
commit 7d7afd64a7
6 changed files with 75 additions and 51 deletions

View File

@ -3,4 +3,12 @@
}
body {
background-color: #0d1d3a;
}
html::-webkit-scrollbar {
width: 0.8vw;
}
html::-webkit-scrollbar-thumb {
background-color: #eaeaea;
border-radius: 5vw;
border: 4px solid #0d1d3a;
}

View File

@ -17,4 +17,12 @@
height: 35vw !important;
width: 25vw !important;
border-radius: 3vw;
}
.film_card_column::-webkit-scrollbar {
height: 7px;
}
.film_card_column::-webkit-scrollbar-thumb {
background-color: #0d1d3a;
border-radius: 5vw;
border: 1px solid #ffffff;
}

View File

@ -1,36 +1,19 @@
.seats_card {
margin-left: 27%;
margin-right: 27%;
margin-top: 2vw;
margin-bottom: 5vw;
background-color: #eaeaea;
border-radius: 3vw;
display: flex;
flex-direction: row;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 50%;
margin: 0 auto;
margin-top: 2vw;
width: 46%;
overflow-x: auto;
overflow-y: auto;
}
.card_body {
width: 80%;
}
.line {
width: 30%;
height: 0.5vw;
background-color: black;
position: absolute;
top: 70%;
border-radius: 3vw;
margin-left: 5%;
margin-top: 8vw;
}
h6 {
text-align: center;
margin-top: 0.4vw;
}
.seat_number {
width: 1vw;
height: 1.1vw;
@ -54,29 +37,34 @@ h6 {
border-radius: 3vw;
}
.film_info_block {
margin-right: 25%;
margin-left: 25%;
width: 50%;
margin-top: 5vw;
margin-right: 27%;
margin-left: 27%;
width: 46%;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: flex-end;
height: 20vw;
}
.film_info_text_block {
height: 20vw;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-evenly;
margin: 2vw;
justify-content: flex-start;
align-items: flex-start;
margin-left: 1vw;
}
.film_info_text {
.film_info_text, .film_info_description {
color: #eaeaea;
}
.film_info_description {
max-height: 9.9vw;
overflow-y: auto;
}
.cell {
background-color: transparent !important;
}
.cell {
height: 4vw;
width: 3.5vw;
}
@ -84,4 +72,20 @@ h6 {
display: flex;
align-items: center;
justify-content: center;
width: 3vw;
}
.seats_card::-webkit-scrollbar {
height: 7px;
}
.seats_card::-webkit-scrollbar-thumb {
background-color: #0d1d3a;
border-radius: 5vw;
border: 1px solid #eaeaea;
}
.film_info_description::-webkit-scrollbar {
width: 5px;
}
.film_info_description::-webkit-scrollbar-thumb {
background-color: #eaeaea;
border-radius: 5vw;
}

View File

@ -14,29 +14,33 @@
<h1 class="film_info_text">{{ session.film.name }}</h1>
<p class="film_info_text">{{ session.auditorium.number }}</p>
<p class="film_info_text">{{ session.start_datetime }}</p>
<p class="film_info_description">{{ session.film.description }}</p>
<div class="tags_block">
{% for genre in session.film.genres.all %}
<div class="badge text-bg-secondary genre">{{genre.name}}</div>
{% endfor %}
</div>
</div>
</div>
<div class="seats_card" style="height: {{ height }}vw;">
<div class="card_body">
<table>
<tbody>
{% for row in session.auditorium.row_count|get_range %}
<tr>
<td class="row_number_cell cell">{{ row }}</td>
{% for seat in seats %}
<td class="cell">
<a class="film_session">
<span class="seat_number">{{ seat.row_number }}</span>
</a>
</td>
{% endfor %}
</tr>
<table>
<tbody>
{% for row in session.auditorium.row_count|get_range %}
<tr>
<td class="row_number_cell cell">Ряд {{ row }}</td>
{% for seat in seats %}
<td class="cell">
<a class="film_session">
<span class="seat_number">{{ seat.row_number }}</span>
</a>
</td>
{% endfor %}
</tbody>
</table>
<div>
<button class="btn btn-primary buy_btn">Купить билет</button>
</div>
</tr>
{% endfor %}
</tbody>
</table>
<div>
<button class="btn btn-primary buy_btn">Купить билет</button>
</div>
</div>

View File

@ -45,7 +45,7 @@ def session_view(request, sess_id):
FilmSession.objects.all(),
id=sess_id,
)
height = session.auditorium.row_count * 6
height = round(session.auditorium.row_count * 4 + 7)
context = {
'session': session,
'seats': Row.objects.filter(auditorium_id=session.auditorium.id),