Re: Where can I work as a freelancer (Django dev)

2021-06-01 Thread Allison Tretina
I found someone who needed a project and asked them if they’d write me a recommendation on completion. Then, I’ve charged a bit for the second project. I’ve had to go to clients. Small businesses. They’ve never come to me, at least not yet. I served the website on my Raspberry Pi and charged for ho

Re: Retrieval of Date and data in select text field

2020-10-08 Thread Allison Tretina
Can you show us your template, displaying your tags, and your views? On Thu, Oct 8, 2020 at 12:37 PM Eugene TUYIZERE wrote: > No one to assist please? > > Sent from my iPhone > > On 7 Oct 2020, at 19:02, Eugene TUYIZERE wrote: > > I always struggle to retrieve from database to html text field o

Re: Problem with user.username

2020-04-23 Thread Allison Tretina
I have two typos on line 6 and 9. My bad. >>> list(get_user_model().*objects.filter*(is_superuser=True).values_list('username', flat=True)) >>> list(get_user_model().*objects.filter*(is_superuser=True).values_list('password', flat=True)) On Thu, Apr 23,

Re: Problem with user.username

2020-04-23 Thread Allison Tretina
Open the python shell in your terminal. $ python3 manage.py shell Import the modules to access your admin values. >>> from django.contrib.auth import get_user_model Get the username first. >>> list(get_user_model().objects.fileter(is_superuser=True).values_list('username', flat=True)) ['someus