feat(comments): v2 — HTMX, Turnstile, reactions, design refresh #44

Merged
mark merged 5 commits from feature/comments-v2 into main 2026-03-04 00:04:43 +00:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit a118df487d - Show all commits

View File

@@ -14,7 +14,6 @@ from apps.blog.models import ArticleIndexPage, ArticlePage
from apps.blog.tests.factories import AuthorFactory from apps.blog.tests.factories import AuthorFactory
from apps.comments.models import Comment, CommentReaction from apps.comments.models import Comment, CommentReaction
# ── Fixtures ────────────────────────────────────────────────────────────────── # ── Fixtures ──────────────────────────────────────────────────────────────────

View File

@@ -1,7 +1,6 @@
from __future__ import annotations from __future__ import annotations
import logging import logging
from urllib.parse import urlencode
import requests as http_requests import requests as http_requests
from django.conf import settings from django.conf import settings
@@ -9,7 +8,7 @@ from django.contrib import messages
from django.core.cache import cache from django.core.cache import cache
from django.core.exceptions import ValidationError from django.core.exceptions import ValidationError
from django.db import IntegrityError from django.db import IntegrityError
from django.db.models import F, Prefetch from django.db.models import Prefetch
from django.http import HttpResponse, JsonResponse from django.http import HttpResponse, JsonResponse
from django.shortcuts import get_object_or_404, redirect, render from django.shortcuts import get_object_or_404, redirect, render
from django.views import View from django.views import View