From: Radek Czajka <rczajka@rczajka.pl> Date: Tue, 27 Aug 2024 13:56:07 +0000 (+0200) Subject: Find unused tags. X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/3deefcf48d775eb7d4cb1a41a51b8ff501f108ed Find unused tags. --- diff --git a/src/catalogue/templates/catalogue/book_list.html b/src/catalogue/templates/catalogue/book_list.html index e8debd975..c57bdd3f9 100644 --- a/src/catalogue/templates/catalogue/book_list.html +++ b/src/catalogue/templates/catalogue/book_list.html @@ -17,6 +17,7 @@ {% block main %} <div class="l-section"> <div class="l-author__header"> + <span data-edit="catalogue/tag/{{ main_tag.id }}"></span> {% if main_tag.photo %} {% thumbnail main_tag.photo '40x40' crop='top' as th %} <figure> diff --git a/src/catalogue/templates/catalogue/themed_book_list.html b/src/catalogue/templates/catalogue/themed_book_list.html index 665233d22..dc54f7698 100644 --- a/src/catalogue/templates/catalogue/themed_book_list.html +++ b/src/catalogue/templates/catalogue/themed_book_list.html @@ -17,6 +17,7 @@ <div class="l-section"> <div class="l-author__header"> + <span data-edit="catalogue/tag/{{ main_tag.id }}"></span> <h1><span>{% trans "Motyw" %}:</span> {{ main_tag.name }}</h1> </div> </div> diff --git a/src/reporting/templates/reporting/main.html b/src/reporting/templates/reporting/main.html index e67ef78b9..903db3e26 100644 --- a/src/reporting/templates/reporting/main.html +++ b/src/reporting/templates/reporting/main.html @@ -16,6 +16,20 @@ <h1>Statystyka</h1> <div class="normal-text"> + <h3>Nieużywane tagi</h3> + + <p> + Te tagi nie majÄ Å¼adnych ksiÄ Å¼ek. + Prawdopodobnie można je usunÄ Ä, jeÅli nie zawierajÄ cennych informacji + albo czekajÄ wÅaÅnie na publikacjÄ ksiÄ Å¼ki. + </p> + + <ul> + {% for tag in unused_tags %} + <li><a href="{{ tag.get_absolute_url }}">{{ tag }} ({{ tag.get_category_display }})</a></li> + {% endfor %} + </ul> + <h3>Audiobooki</h3> <table class="stats"> diff --git a/src/reporting/views.py b/src/reporting/views.py index fca453420..553371efe 100644 --- a/src/reporting/views.py +++ b/src/reporting/views.py @@ -8,7 +8,7 @@ from django.contrib.admin.views.decorators import staff_member_required from django.db.models import Count from django.shortcuts import render -from catalogue.models import Book, BookMedia +from catalogue.models import Book, BookMedia, Tag from reporting.utils import render_to_pdf, render_to_csv, generated_file_view @@ -60,10 +60,13 @@ def stats_page(request): ] etags.append(d) + unused_tags = Tag.objects.exclude(category='set').filter(items=None, book=None) + return render(request, 'reporting/main.html', { 'media_types': media_types, 'licenses': licenses, 'etags': etags, + 'unused_tags': unused_tags, })