def form_valid(self, form): instance = form.save() ctx = {'success': True, 'msg': "Comment was created successfully."} ctx['data'] = self.comment_dict(instance) return JsonResponse(ctx)