Kumar

Results 3 comments of Kumar
trafficstars

auto-generating username while creating user can resolve the issue ``` from django.contrib.auth.models import AbstractUser, UserManager as AbstractUserManager # Custom user model manager class CustomUserManager(AbstractUserManager): def create_user(self, *args, **kwargs): email =...

I managed to make it work with below code models.py ``` from imagekit.models import ImageSpecField from imagekit.processors import ResizeToFill, TrimBorderColor class User(AbstractUser): avatar = models.ImageField(upload_to='images/avatar/', null=True, blank=True) avatar_thumbnail = ImageSpecField(source='avatar',...

Crashes on Linux too. The app crashes while switching between the menus from the menubar.