edit_route fixed
This commit is contained in:
SDE
2023-08-01 19:56:09 +03:00
parent 586428b857
commit 0b35e91159
6 changed files with 33 additions and 12 deletions

View File

@@ -40,7 +40,11 @@ def support_tickets_ajax(request):
if request.method != 'POST':
raise Http404
from ChatServiceApp.models import MsgGroup
tickets = MsgGroup.objects.filter(enable=True, owner=request.user)
Dict = {
'tickets': tickets
}
html = render_to_string('blocks/profile/b_support_tickets.html', Dict, request=request)