diff --git a/apps/authentication/models.py b/apps/authentication/models.py index 208d9c9fb..43370a4bf 100644 --- a/apps/authentication/models.py +++ b/apps/authentication/models.py @@ -53,7 +53,7 @@ class LoginConfirmSetting(CommonModelMixin): def create_confirm_ticket(self, request=None): from tickets.models import Ticket - title = _('Login confirm') + '{}'.format(self.user) + title = _('Login confirm ') + '{}'.format(self.user) if request: remote_addr = get_request_ip(request) city = get_ip_city(remote_addr)