|
@@ -8,7 +8,7 @@ from django.shortcuts import redirect
|
|
|
from django.views.generic import DetailView
|
|
|
|
|
|
from tickets.forms import TicketForm
|
|
|
-from tickets.models import Attachment, Comment, Ticket
|
|
|
+from tickets.models import Attachment, Comment, Event, Ticket
|
|
|
from tickets.utils import UserCanReadTicketMixin
|
|
|
|
|
|
|
|
@@ -27,6 +27,9 @@ class TicketDetailView(LoginRequiredMixin, UserCanReadTicketMixin, DetailView):
|
|
|
context['comment_list'] = Comment.objects.filter(ticket=self.object.pk).order_by("-date").annotate(
|
|
|
author_username=F("author__username"), author_email=F("author__email")
|
|
|
)
|
|
|
+ context['event_list'] = Event.objects.filter(ticket=self.object.pk).order_by("-date").annotate(
|
|
|
+ author_username=F("author__username")
|
|
|
+ )
|
|
|
context['attachments'] = Attachment.objects.filter(ticket=self.object.pk).select_related("added_by")
|
|
|
|
|
|
# List with statuses codes & their names
|
|
@@ -50,6 +53,11 @@ class TicketDetailView(LoginRequiredMixin, UserCanReadTicketMixin, DetailView):
|
|
|
ticket.status = int(status)
|
|
|
ticket.save()
|
|
|
messages.success(request, f"Status successfully changed.")
|
|
|
+ Event.objects.create(
|
|
|
+ author=request.user,
|
|
|
+ ticket=ticket,
|
|
|
+ body="Ticket status was changed"
|
|
|
+ )
|
|
|
else:
|
|
|
messages.error(request, f"Status change error.")
|
|
|
|