Re: Mpesa integration.

2022-09-06 Thread Lutalo Bbosa joseph
Flutterwave gives everything at your plate mpesa inclusive On Tue, Sep 6, 2022, 12:08 Walid Kambagha wrote: > Hi Felix, > > Does the package you shared works also with Mpesa Vodacom from Tanzania? > > Thanks. > > On Tue, 6 Sep 2022 at 10:48, Onjomba Felix > wrote: > >> hae i have used used mpes

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

2021-06-04 Thread Lutalo Bbosa joseph
please admin add jamex...@gmail.com to this group On Wed, Jun 2, 2021 at 5:44 PM Gobi Dasu wrote: > Hi Allison, Nikola, and others in this group for whom it is relevant. > > We'd love to have you join our talent network of software developers, data > scientists, and designers. Our site is ldtale

Re: Singup Users

2020-04-06 Thread Lutalo Bbosa joseph
U can read about the @login_required decorator in django and for redirecting its about handling the actions in the form with the url On Tue, Apr 7, 2020, 4:09 AM hajar Benjat wrote: > hello django users how are you ? > > I have two questions !! > > how can I make users who sign up in my applicat

Re: Study and project partner(s) needed

2020-02-14 Thread Lutalo Bbosa joseph
Hello am Bosa my stack is django,django rest,react and redux Am interested in this how can we work together On Sat, Feb 15, 2020, 8:34 AM paarull shukla wrote: > Heloo satvik I also started learn jango few days back.. If we face > anyproblem can we discuss > > On Sat, 15 Feb, 2020, 9:06 AM Satvi

Re: to make a wish list .

2019-10-25 Thread Lutalo Bbosa joseph
I havent written this yet but, think this works use a list, after clicking the button append the task to the list then call the list in context to display all the items in the html template. try this and give me afeed back. On Fri, Oct 25, 2019 at 2:56 PM Shubham Mishra wrote: > hello, > I am S

Re: Look forward to taking part in open source projects

2019-06-26 Thread Lutalo Bbosa joseph
for opensource contributions visit www.codetriage.com it has many open source issues that need contributors On Thu, Jun 27, 2019 at 6:55 AM wanbao jin wrote: > Hello, everyone. > I am a python developer and not doing python related works for 2 months. > I'd like to join open source projects and

Re: action in a form

2019-06-23 Thread Lutalo Bbosa joseph
as jung suggests action is meant to take in a url forexample action =" {% url "cart:journal" %}", where cart is name of the cart and journal is the name of the url On Sun, Jun 23, 2019 at 7:47 PM Sebastian Jung wrote: > Hello, > > You must Put in Action not a Name from a function. You must Put

Re: invalid literal for int() with base 10: ''

2019-06-22 Thread Lutalo Bbosa joseph
it all is not working, i guess i have to write another independent function for reomving products from the cart but thx. though i thought, it would workout On Sat, Jun 22, 2019 at 9:00 PM Alejandro Pena wrote: > Which error are you seeing now? Try making this change and let us know > what the re

Re: invalid literal for int() with base 10: ''

2019-06-22 Thread Lutalo Bbosa joseph
but the remove function is supposed to work yet it returns the error but add works def update(request): product_id = request.POST.get("product_id") if product_id is not None : print(product_id) product_id = int(product_id) try: product_id = int(product_id)

Re: invalid literal for int() with base 10: ''

2019-06-22 Thread Lutalo Bbosa joseph
This is what happens in the terminal when i use int(product_id) 2 2 [22/Jun/2019 16:56:33] "POST /carts/update/ HTTP/1.1" 302 0 [22/Jun/2019 16:56:33] "GET /carts/ HTTP/1.1" 200 8245 On Sat, Jun 22, 2019 at 7:50 PM Alejandro Pena wrote: > I feel you, figuring out such errors for the first tim

Re: invalid literal for int() with base 10: ''

2019-06-22 Thread Lutalo Bbosa joseph
kk will do that, On Sat, Jun 22, 2019 at 7:29 PM Amiya Dash wrote: > Can u send me the full project.share me the github link > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from

Re: invalid literal for int() with base 10: ''

2019-06-21 Thread Lutalo Bbosa joseph
am trying to figure it out but when i print(product_id) print(type(product_id)) i get this output 1 , so probably its because i cant iterate over a string but am still failing to figure it out On Fri, Jun 21, 2019 at 10:16 PM Lutalo Bbosa joseph wrote: > hi hector, can u help me fix it, coz

Re: invalid literal for int() with base 10: ''

2019-06-21 Thread Lutalo Bbosa joseph
(product_id)) > > > El vie., 21 jun. 2019 a las 6:33, Lutalo Bbosa joseph () > escribió: > >> hi guys, am working on an ecommerce system, which has cart as an app, but >> i keep on getting this error and cant move on any help, here is my views.py >> , >> from

Re: invalid literal for int() with base 10: ''

2019-06-21 Thread Lutalo Bbosa joseph
ming from. > > -Jorge > > On Fri, Jun 21, 2019 at 9:13 AM Lutalo Bbosa joseph > wrote: > >> here is my template that handles that bit, and i have as well attached >> atemplate in which its used >> >> On Fri, Jun 21, 2019 at 6:59 PM Aldian Fazrihady >> wro

same error

2019-06-21 Thread Lutalo Bbosa joseph
thiValueError: invalid literal for int() with base 10: '' s is the error that is returned -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr..

Re: invalid literal for int() with base 10: ''

2019-06-21 Thread Lutalo Bbosa joseph
on pressing remove the product is supposed to be removed from the cart, but it instead displays an error On Fri, Jun 21, 2019 at 6:34 PM Lutalo Bbosa joseph wrote: > well here is apic of what am doing, > > On Fri, Jun 21, 2019 at 6:20 PM Ahmed Ishtiaque > wrote: > >> Hi Lu

Re: unable to import django packages

2019-06-19 Thread Lutalo Bbosa joseph
i think its more of a vscode issue probably some django paackages need to be activated in pylint On Wed, Jun 19, 2019 at 5:08 AM Aldian Fazrihady wrote: > Has the IDE used the same python environment with the one having Django > module installed? > > Aldian Fazrihady > > > On Wed, 19 Jun 2019, 0

Re: Saving OnetoOne Field

2019-06-18 Thread Lutalo Bbosa joseph
A foreignKey with aunique attribute is same as using a OnetoOneField so either can suit your needs and please be clear about saving On Tue, Jun 18, 2019 at 1:56 PM 'Shreejith Unnikrishnan Nair' via Django users wrote: > I'm beginner , so i need help > Please suggest me the best practice to save

Re: Django apk

2019-06-12 Thread Lutalo Bbosa joseph
convert django application to progressive web app by using service workers then this can run on any device be it android or u search about converting PWA 2 APK to make an apk On Wed, Jun 12, 2019 at 7:01 PM Nebojsa Hajdukovic < nebojsa.zero...@gmail.com> wrote: > U can use django for beckend, an

Re: form submission

2019-05-09 Thread Lutalo Bbosa joseph
please specify what type of forms. coz in django u can create forms in forms.py using the models, and then this can be invoked in html as {{ forrm }} so am not understanding what u want specifically On Thu, May 9, 2019 at 3:39 PM Ganesh Babu wrote: > Recently i was started Pyhon with Django. In

outputting data from forms

2019-05-06 Thread Lutalo Bbosa joseph
am working on a project where my html template links to a form which has values am supposed to use to calculate the final value. am struggling to write this logic any help please -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fr

Re: Tutorials Needed

2019-02-28 Thread Lutalo Bbosa joseph
try introduction to python by sentdex on youtube On Thu, Feb 28, 2019 at 9:54 PM Madhav Rajmohan wrote: > Friends, > I am Madhav Rajmohan currently pursuing my Studies in > Computer Science, I Need some good beginners* Tutorial for Django.*And at > the same time some tutorials* for

any good books for django2

2019-01-29 Thread Lutalo Bbosa joseph
guys can anyone assist me with a link to any django2 book because it seems its most are not free -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+uns

Re: problem in activating virtual environment in Django with ". \Scripts\activate" command

2019-01-17 Thread Lutalo Bbosa joseph
if linux, then activating the env is source/bin/activate after changing to that directory On Thu, Jan 17, 2019 at 10:22 PM Jorge Gimeno wrote: > I assume that's in Windows Powershell. I think it's .\Scripts\activate.bat > > I would also check to ensure that the Scripts folder exists in your > cu

creating virtualenv for django but i get import zlib module error what could be the problem

2018-09-01 Thread Lutalo Bbosa joseph
raceback (most recent call last): File "/usr/local/bin/virtualenv", line 9, in load_entry_point('virtualenv==15.0.1', 'console_scripts', 'virtualenv')() File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 542, in load_entry_point return get_distribution(dist).load_e