- Re-applied redesign to new partial templates (_comment.html, _reply.html, etc.) - Preserved HTMX and reactions functionality from v2 update - Improved spacing and typography across all comment components - Verified all E2E tests pass with new structure
7 lines
285 B
HTML
7 lines
285 B
HTML
<div id="comments-list" class="space-y-12 mb-16"
|
|
hx-get="{% url 'comment_poll' article_id=page.id %}" hx-trigger="every 30s" hx-swap="innerHTML">
|
|
{% for comment in approved_comments %}
|
|
{% include "comments/_comment.html" with comment=comment page=page %}
|
|
{% endfor %}
|
|
</div>
|