Re: Quiz app

2022-11-16 Thread Bhuvnesh Sharma
Don't select any category or difficulty then you'll get random questions( you can select amount if you want) . Or if you want questions from a particular category you can also post new questions in that category which will be available once I approve those questions. On Wed, Nov 16, 2022, 8:33 PM

Re: Quiz app

2022-11-16 Thread Lakshyaraj Dash
Please tell which category has more than 5 questions. On Wed, 16 Nov, 2022, 20:00 Bhuvnesh Sharma, wrote: > Maybe the category you are sending request to contains only one matching > question in db? > > On Wed, Nov 16, 2022, 7:30 PM Lakshyaraj Dash < > dashlakshyaraj2...@gmail.com> wrote: > >> N

Re: Page Integration

2022-11-16 Thread Pooja Kumari
I'll check it out. Thanks On Wed, Nov 16, 2022, 7:03 PM parmeshwar deharkar < parmeshwardehar...@gmail.com> wrote: > https://pythonprogramming.net/user-login-logout-django-tutorial/ > > On Wed, Nov 16, 2022, 6:58 PM parmeshwar deharkar < > parmeshwardehar...@gmail.com> wrote: > >> Just visit on

Re: Quiz app

2022-11-16 Thread Bhuvnesh Sharma
Maybe the category you are sending request to contains only one matching question in db? On Wed, Nov 16, 2022, 7:30 PM Lakshyaraj Dash wrote: > Nice api > But it generates only one question. > > On Wed, 16 Nov, 2022, 18:38 Bhuvnesh Sharma, > wrote: > >> Hi lakshayaraj, >> Just in case you need

Re: Quiz app

2022-11-16 Thread Lakshyaraj Dash
Nice api But it generates only one question. On Wed, 16 Nov, 2022, 18:38 Bhuvnesh Sharma, wrote: > Hi lakshayaraj, > Just in case you need api for the quiz app, you can checkout the open db i > created for storing questions and answers. Link:- http://quizry.in/ > > Thanks and Regards > > On Wed

Re: Page Integration

2022-11-16 Thread parmeshwar deharkar
https://pythonprogramming.net/user-login-logout-django-tutorial/ On Wed, Nov 16, 2022, 6:58 PM parmeshwar deharkar < parmeshwardehar...@gmail.com> wrote: > Just visit on www.pythondjango.com > See that page registration access > > On Thu, Nov 10, 2022, 9:02 PM Pooja Kumari > wrote: > >> Hi.. Can

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread Peter Mwai
> python manage.py runserver Watching for file changes with StatReloader Performing system checks... System check identified no issues (0 silenced). You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, session

Re: Page Integration

2022-11-16 Thread parmeshwar deharkar
Just visit on www.pythondjango.com See that page registration access On Thu, Nov 10, 2022, 9:02 PM Pooja Kumari wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not abl

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread Balogun Awwal
What is the output given Sent from awwal > On 16 Nov 2022, at 1:23 PM, Peter Mwai wrote: >  > After activating the virtual environment it has finally accepted to run > >> On Wed, 16 Nov 2022 at 13:35, Raúl Luján Delgado >> wrote: >> Hello Kasper, >> >> Probably is a Windows problem, becaus

Re: Quiz app

2022-11-16 Thread Bhuvnesh Sharma
Hi lakshayaraj, Just in case you need api for the quiz app, you can checkout the open db i created for storing questions and answers. Link:- http://quizry.in/ Thanks and Regards On Wed, Nov 16, 2022, 6:00 PM Sebastian Jung wrote: > Hello Lakshyaraj, > > I would create a app quiz with model qui

Re: Single Sign On in Django

2022-11-16 Thread venkat Bukka
Hello, Yeah but the requirement is to use django-simple-sso. Please let me know if you have any sample project for SSO. Thank you...! B V Suresh On Wed, 16 Nov 2022 at 17:12, Clive Bruton wrote: > You can use django-allauth: > > https://github.com/pennersr/django-allauth > > On 10 Nov 2022, at

Re: Quiz app

2022-11-16 Thread Sebastian Jung
Hello Lakshyaraj, I would create a app quiz with model quiz with a charfield. Then when get open 8 would get highesr id from model then randomizer and then get from database entity with this id. When you need 5 then get list of random 5 ids in this range and get all from database. Then yoz render

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread Peter Mwai
After activating the virtual environment it has finally accepted to run On Wed, 16 Nov 2022 at 13:35, Raúl Luján Delgado wrote: > Hello Kasper, > > Probably is a Windows problem, because if you follow the rules of > differents tutorials, is easy to run the runserver, > > Sincerely, > > Raúl Lujá

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread 'Kasper Laudrup' via Django users
On 16/11/2022 12.27, Jitendra kumar Patra wrote: Could you share what type of error you are getting? I'm not getting any errors. I don't know any more than you. We have to wait and see if Peter Mwai finds it relevant to share what is needed for any of us to help him. Kind regards, Kasper L

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread 'Kasper Laudrup' via Django users
On 16/11/2022 11.33, Raúl Luján Delgado wrote: Hello Kasper, Probably is a Windows problem, because if you follow the rules of differents tutorials, is easy to run the runserver, Could be. Could be any kind of problem really. Your guess is as good as mine. Only Peter Mwai knows but it do

Re: Quiz app

2022-11-16 Thread Clive Bruton
Questions.objects.all().order_by('?')[:5] ie get all the rows from the Questions table, in a random order, then show me the first five. https://docs.djangoproject.com/en/dev/topics/db/queries/#limiting- querysets -- Clive On 16 Nov 2022, at 01:14, Lakshyaraj Dash wrote: Hello everyone,

Re: Single Sign On in Django

2022-11-16 Thread Clive Bruton
You can use django-allauth: https://github.com/pennersr/django-allauth On 10 Nov 2022, at 09:59, venkat Bukka wrote: Hello all, Could anyone please let me know how we can implement SSO in the django...for authenticating multiple apps in a base application. -- You received this message bec

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread Jitendra kumar Patra
Could you share what type of error you are getting? On Wed, Nov 16, 2022 at 2:39 PM 'Kasper Laudrup' via Django users < django-users@googlegroups.com> wrote: > On 15/11/2022 18.49, Peter Mwai wrote: > > Hello experts, > > I was trying to start the server using 'python manage.py runserver' but > >

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread Raúl Luján Delgado
Hello Kasper, Probably is a Windows problem, because if you follow the rules of differents tutorials, is easy to run the runserver, Sincerely, Raúl Luján Delgado El mié, 16 nov 2022 a las 6:10, 'Kasper Laudrup' via Django users (< django-users@googlegroups.com>) escribió: > On 15/11/2022 1

Re: MANAGE.PY RUNSERVER ERROR

2022-11-16 Thread 'Kasper Laudrup' via Django users
On 15/11/2022 18.49, Peter Mwai wrote: Hello experts, I was trying to start the server using 'python manage.py runserver' but encountered this error, You have a bug somewhere in your code. That most likely happened after you made a change somewhere. Look into what you changed, fix the bug