X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/7f46a327b85a1832a3abb7b91c56863821ec811c..a3d9304f0a66601635a89b4a4760978894942a33:/notes/views.py diff --git a/notes/views.py b/notes/views.py index c6f2e26..62a51e8 100644 --- a/notes/views.py +++ b/notes/views.py @@ -34,11 +34,11 @@ def note_detail(request, note_slug): return render(request, 'note_detail.html', {'note': note}) def archive_main(request): - notes_years = Note.objects.years() + notes_years = Note.objects.years_with_total() return render(request, 'archive_main.html', {'years': notes_years}) def archive_year(request, archive_year): - notes_months = Note.objects.months(archive_year) + notes_months = Note.objects.months_with_total(archive_year) return render(request, 'archive_year.html', {'year': archive_year, 'months': notes_months}) def archive_month(request, archive_year, archive_month):