Поиск по тегам
This commit is contained in:
@@ -1,24 +1,36 @@
|
|||||||
from django.shortcuts import render
|
from django.shortcuts import render
|
||||||
from .models import manga_collection
|
|
||||||
from django.core.paginator import Paginator
|
from django.core.paginator import Paginator
|
||||||
|
from .models import manga_collection
|
||||||
|
|
||||||
|
|
||||||
def manga_catalog(request):
|
def manga_catalog(request):
|
||||||
# Получаем все записи
|
# Получаем список всех уникальных тегов
|
||||||
all_manga = list(manga_collection.find({}))
|
all_tags = manga_collection.distinct("tags")
|
||||||
|
|
||||||
# Создаем пагинатор
|
# Получаем выбранные теги из GET-параметров
|
||||||
paginator = Paginator(all_manga, 20)
|
selected_tags = request.GET.getlist('tags')
|
||||||
|
|
||||||
|
# Формируем запрос для фильтрации
|
||||||
|
query = {}
|
||||||
|
if selected_tags:
|
||||||
|
query['tags'] = {'$all': selected_tags}
|
||||||
|
|
||||||
|
# Получаем отфильтрованные записи
|
||||||
|
filtered_manga = list(manga_collection.find(query))
|
||||||
|
|
||||||
|
# Пагинация
|
||||||
|
paginator = Paginator(filtered_manga, 20)
|
||||||
page_number = request.GET.get('page')
|
page_number = request.GET.get('page')
|
||||||
page_obj = paginator.get_page(page_number)
|
page_obj = paginator.get_page(page_number)
|
||||||
|
|
||||||
# Получаем общее количество манги в базе
|
|
||||||
total_manga_count = manga_collection.count_documents({})
|
total_manga_count = manga_collection.count_documents({})
|
||||||
|
|
||||||
return render(request, 'manga_catalog.html', {
|
return render(request, 'manga_catalog.html', {
|
||||||
'page_obj': page_obj,
|
'page_obj': page_obj,
|
||||||
'manga_list': page_obj.object_list,
|
'manga_list': page_obj.object_list,
|
||||||
'total_manga_count': total_manga_count # Добавляем счетчик в контекст
|
'total_manga_count': total_manga_count,
|
||||||
|
'all_tags': sorted(all_tags),
|
||||||
|
'selected_tags': selected_tags
|
||||||
})
|
})
|
||||||
|
|
||||||
def show_manga(request, manga_id):
|
def show_manga(request, manga_id):
|
||||||
|
|||||||
@@ -1,15 +1,32 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
<link rel="stylesheet" href="{% static 'css/manga_catalog.css' %}">
|
<link rel="stylesheet" href="{% static 'css/manga_catalog.css' %}">
|
||||||
<div class="catalog-header">
|
<div class="catalog-header">
|
||||||
<h1 class="title-site">Дроч.кам</h1>
|
<h1 class="title-site">Дроч.кам</h1>
|
||||||
<h5 class="titles-cont">Манги на сайте: {{ total_manga_count }}</h5>
|
<h5 class="titles-cont">Манги на сайте: {{ total_manga_count }}</h5>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Боковая панель фильтрации (добавлена в начало, но будет справа благодаря CSS) -->
|
||||||
|
<div class="filter-sidebar">
|
||||||
|
<h3>Фильтр по тегам</h3>
|
||||||
|
<form method="get" action="{% url 'manga_catalog' %}">
|
||||||
|
<div class="tag-filters">
|
||||||
|
{% for tag in all_tags %}
|
||||||
|
<div class="tag-filter-item">
|
||||||
|
<input type="checkbox" id="tag-{{ forloop.counter }}" name="tags" value="{{ tag }}"
|
||||||
|
{% if tag in selected_tags %}checked{% endif %}>
|
||||||
|
<label for="tag-{{ forloop.counter }}">{{ tag }}</label>
|
||||||
</div>
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="filter-button">Применить фильтр</button>
|
||||||
|
{% if selected_tags %}
|
||||||
|
<a href="{% url 'manga_catalog' %}" class="clear-filter">Сбросить</a>
|
||||||
|
{% endif %}
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="catalog-container">
|
<div class="catalog-container">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="manga-list">
|
<div class="manga-list">
|
||||||
{% for manga in manga_list %}
|
{% for manga in manga_list %}
|
||||||
<div class="manga-item">
|
<div class="manga-item">
|
||||||
@@ -34,7 +51,6 @@
|
|||||||
<h3>{{ manga.original_title }}</h3>
|
<h3>{{ manga.original_title }}</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Теги -->
|
|
||||||
{% if manga.tags %}
|
{% if manga.tags %}
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
{% for tag in manga.tags %}
|
{% for tag in manga.tags %}
|
||||||
@@ -60,21 +76,13 @@
|
|||||||
Читать в источнике
|
Читать в источнике
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Пагинация снизу -->
|
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
{% if page_obj.has_previous %}
|
{% if page_obj.has_previous %}
|
||||||
<a href="?page=1">« первая</a>
|
<a href="?page=1">« первая</a>
|
||||||
|
|||||||
@@ -4,6 +4,23 @@ body {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
background: #f8f9fa;
|
background: #f8f9fa;
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 20px;
|
||||||
|
max-width: 1400px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.center-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 800px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.catalog-header {
|
.catalog-header {
|
||||||
@@ -17,20 +34,18 @@ body {
|
|||||||
background-color: #3987cf;
|
background-color: #3987cf;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between; /* Распределяет пространство между элементами */
|
justify-content: space-between;
|
||||||
padding: 0 20px; /* Добавляем отступы по бокам */
|
padding: 0 20px;
|
||||||
border-bottom-left-radius: 15px;
|
border-bottom-left-radius: 15px;
|
||||||
border-bottom-right-radius: 15px;
|
border-bottom-right-radius: 15px;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-site {
|
.title-site {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
position: absolute; /* Абсолютное позиционирование */
|
position: absolute;
|
||||||
left: 50%; /* Сдвигаем на 50% вправо */
|
left: 50%;
|
||||||
transform: translateX(-50%); /* Корректируем положение на половину своей ширины */
|
transform: translateX(-50%);
|
||||||
margin: 0; /* Убираем стандартные отступы */
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.titles-cont {
|
.titles-cont {
|
||||||
@@ -38,14 +53,14 @@ body {
|
|||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
left: 65%;
|
left: 65%;
|
||||||
top: 10%;
|
top: 10%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.catalog-container {
|
.catalog-container {
|
||||||
max-width: 50%;
|
max-width: 900px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Карточка манги */
|
/* Карточка манги */
|
||||||
@@ -94,31 +109,6 @@ body {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
transition: background 0.3s;
|
transition: background 0.3s;
|
||||||
}
|
}
|
||||||
/* Строка с мета-информацией */
|
|
||||||
.meta-row {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
width: 100%;
|
|
||||||
margin-top: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Кнопка "Читать в источнике" */
|
|
||||||
.read-original-button {
|
|
||||||
padding: 6px 12px;
|
|
||||||
background: #6497c5;
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-size: 14px;
|
|
||||||
transition: background 0.3s;
|
|
||||||
white-space: nowrap;
|
|
||||||
margin-left: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.read-original-button:hover {
|
|
||||||
background: #5a6268;
|
|
||||||
}
|
|
||||||
|
|
||||||
.read-button:hover {
|
.read-button:hover {
|
||||||
background: #2478c2;
|
background: #2478c2;
|
||||||
@@ -166,19 +156,147 @@ body {
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.manga-meta{
|
.manga-meta {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #555;
|
color: #555;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Строка с мета-информацией */
|
||||||
|
.meta-row {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Кнопка "Читать в источнике" */
|
||||||
|
.read-original-button {
|
||||||
|
padding: 6px 12px;
|
||||||
|
background: #6497c5;
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 14px;
|
||||||
|
transition: background 0.3s;
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.read-original-button:hover {
|
||||||
|
background: #5a6268;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Боковая панель */
|
||||||
|
.filter-sidebar {
|
||||||
|
width: 250px;
|
||||||
|
background: white;
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||||
|
position: fixed;
|
||||||
|
right: 20px;
|
||||||
|
top: 100px;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-sidebar h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
color: #333;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-filters {
|
||||||
|
max-height: 500px;
|
||||||
|
overflow-y: auto;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-filter-item {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-filter-item label {
|
||||||
|
margin-left: 8px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-button {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
background: #3987cf;
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-button:hover {
|
||||||
|
background: #2c6db1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clear-filter {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
color: #666;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clear-filter:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Пагинация */
|
||||||
|
.pagination {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px 0;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagination a {
|
||||||
|
color: #3987cf;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagination a:hover {
|
||||||
|
background: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagination .current {
|
||||||
|
padding: 5px 10px;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
/* Адаптивность */
|
/* Адаптивность */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 1000px) {
|
||||||
.catalog-container {
|
.content-wrapper {
|
||||||
max-width: 90%;
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.filter-sidebar {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 500px;
|
||||||
|
position: static;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.catalog-header {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
.manga-item {
|
.manga-item {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user