add links

This commit is contained in:
j 2023-09-26 19:44:38 +02:00
parent cd8df4c826
commit 2873707e50
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,7 @@
import json
import xml.etree.ElementTree as ET
import json
import ox
from django.utils import timezone
from django.utils.timezone import datetime, timedelta
@ -158,7 +159,7 @@ def comment(request):
comment.name = data['name']
comment.email = data['email']
comment.session_key = request.session.session_key
comment.text = data['text']
comment.text = ox.add_links(data['text'])
comment.save()
link = request.build_absolute_uri(comment.item.get_absolute_url())
tasks.notify_moderators.delay(comment.id, link)

View File

@ -161,7 +161,7 @@ document.querySelector('button#add-comment').addEventListener('click', event =>
`
comment.querySelector('.name').innerText = response.name
comment.querySelector('.date').innerText = response.date
comment.querySelector('.text').innerText = response.text
comment.querySelector('.text').innerHTML = response.text
document.querySelector('.comments .comments-content').append(comment)
document.querySelector('.add-comment textarea').value = ''
if (!user.username) {

View File

@ -14,3 +14,4 @@ django-celery-beat
redis
django-brake
python-telegram-bot
ox