Re: Project available

2020-05-11 Thread Adedotun Richard
I'm interested You can send a zoom invite and let's talk. On Mon, May 11, 2020, 11:05 AM maninder singh Kumar < maninder.s.ku...@gmail.com> wrote: > S.K thanks for the response. > Is there phone number I can get in touch with you? > > Regs > Willy > > Sent from my iPad > > On 11-May-2020, at 11:4

Re: I am building an open source School Management System

2020-05-09 Thread Adedotun Richard
@ola neat Can you share let us see what you have done so far? On Sat, May 9, 2020, 11:11 AM ola neat wrote: > I can contribute as I've built a sch mgt sys using django last yr > > On Fri, May 8, 2020, 21:57 Kasper Laudrup wrote: > >> An may Heiðrún provide a constant flow of mead >> >> On 08/05

Re:

2020-05-06 Thread Adedotun Richard
t): if request.user.is_authenticated: return redirect('home') else: #then you recall the function that call the inserinfo form. I hope this will be able to help you resolve the issue. Kind regards. Adedotun Richard On Wed, May 6, 2020 at 9:41 AM fahad rasool wrote: > I want to ask that

Re:

2020-05-04 Thread Adedotun Richard
Can you see that the Customer is not define that was the reason why it was underlined. Try and import your app model to your view.py: from .models import * On Mon, May 4, 2020, 10:35 PM fahad rasool wrote: > > On Tue, 5 May 2020, 1:30 am Adedotun Richard, > wrote: > >>

Re:

2020-05-04 Thread Adedotun Richard
For the form not saving can you show the error message received? Hope you did not forget to put csrf_token above ur form in the template? And your views.py for the register should be in quote return redirect ('login') On Sun, May 3, 2020, 3:04 PM fahad rasool wrote: > > I am unable to redire

Re:

2020-05-04 Thread Adedotun Richard
Can you show your views.py let me check where you get it wrong? You might be calling a wrong function to handle the output On Mon, May 4, 2020, 7:53 PM fahad rasool wrote: > In my django project ,when a user sign up, a form is redirected to fill > user information,further iam displaying this in

Re: A learner following a Mosh Tutorial on Django and having a problem saving a product to SQLite

2020-05-04 Thread Adedotun Richard
The only option now is to help you by connecting to your system remotely and see the error messages and try to help you remotely. If that will help On Mon, May 4, 2020, 8:52 PM Iain Stewart wrote: > that is still not working, thanks for all your help though, any other > ideas appreciated. Could

Re: A learner following a Mosh Tutorial on Django and having a problem saving a product to SQLite

2020-05-04 Thread Adedotun Richard
; code = models.CharField(max_length=10) > description = models.CharField(max_length=255) > discount = models.FloatField() > > > Thank you for any help! > > > Iain > > > On Sun, 3 May 2020 at 23:13, Adedotun Richard > wrote: > >> Can you paste your model.py c

Re: A learner following a Mosh Tutorial on Django and having a problem saving a product to SQLite

2020-05-03 Thread Adedotun Richard
Can you paste your model.py class for products? There is probability that you are getting the write-up wrong. On Sat, May 2, 2020, 3:43 PM Iain Stewart wrote: > Hi Folks, > > I am a learner and am enjoying learning Django so far (about a month in). > I am doing the Mosh Python Tutorial for Begn