Re:Any open source SMS?

2024-03-14 Thread dawda borje kujabi
You can use twillo for sms verification but it's not free and they do have an sdk for python.  Original message From: raghav bajaj Date: Thu, 14 Mar 2024, 6 amTo: django-users@googlegroups.comSubject: Re: Any open source SMS?Hi,You can use Google's Firebase to authenticate your

Re: Any open source SMS?

2024-03-14 Thread Gulshan Yadav
I generate only apI On Thu, 14 Mar 2024 at 11:30, raghav bajaj wrote: > Hi, > > You can use Google's Firebase to authenticate your users on the client > side. However, they don't have SDKs for Python, so if you wish to integrate > the OTP service with a Django project, you'll have to rely on

Re: Any open source SMS?

2024-03-14 Thread raghav bajaj
Hi, You can use Google's Firebase to authenticate your users on the client side. However, they don't have SDKs for Python, so if you wish to integrate the OTP service with a Django project, you'll have to rely on APIs/AJAX. On Mon, Mar 11, 2024 at 10:21 AM ram.mu...@gmail.com <

Re: Any open source SMS?

2024-03-10 Thread ram.mu...@gmail.com
Hello Vitaly, Thank you for your email but my requirement is to send OTP to registered phone numbers. Best Regards, ~Ram On Friday, March 8, 2024 at 7:41:13 AM UTC-7 Vitaly Bogomolov wrote: > Hi > > > Our use case: > We need to generate OTP code to users upon signup in our application. > >

Re: Any open source SMS?

2024-03-08 Thread Vitaly Bogomolov
Hi Our use case: We need to generate OTP code to users upon signup in our application. You can take a look at my solution to this task for Django: https://github.com/vb64/django.admin.auth.emailpin -- You received this message because you are subscribed to the Google Groups "Django

DjangoCon US 2024 CFP is Open

2024-02-28 Thread Drew Winstel
Hello everyone, The DjangoCon US 2024 Call for Proposals and Opportunity Grants is open! The conference is September 22-27 in Durham, NC. The call for proposals runs through April 24 at 12 PM Eastern (America/New_York time): https://2024.djangocon.us/speaking/ The opportunity grant

contribution on open source

2023-03-24 Thread Priyank Panchal
Hey django users i just started open source contribution and i want to contribute on the django project can anyoone tell that how to understand code and contribute and also which types of tools are needed for better understanding. Thanks -- You received this message because you

Re: How can i Open binary files with Django?

2023-02-14 Thread Anh Nguyen
Use struct to unpack binary file On Wed, 15 Feb 2023 at 00:57 'Kasper Laudrup' via Django users < django-users@googlegroups.com> wrote: > On 14/02/2023 17.52, Lucas Matos Matos wrote: > > In my case i want to take the file with a input type file from a form, > > th

Re: How can i Open binary files with Django?

2023-02-14 Thread 'Kasper Laudrup' via Django users
On 14/02/2023 17.52, Lucas Matos Matos wrote: In my case i want to take the file with a input type file from a form, that is in binary, open it and convert it to a text file, identify its characteristics  and return  something based in its characteristics to the user. This might be what

Re: How can i Open binary files with Django?

2023-02-14 Thread Lucas Matos Matos
In my case i want to take the file with a input type file from a form, that is in binary, open it and convert it to a text file, identify its characteristics and return something based in its characteristics to the user. Can i use this method (open) to do it ? Em seg., 13 de fev. de 2023 às 21

Re: How can i Open binary files with Django?

2023-02-13 Thread atleta
You don't open files with django. You open files with the built-in function 'open'. Which allows you to specify text or binary mode. See the documentation: https://docs.python.org/3.11/library/functions.html#open On Monday, February 13, 2023 at 9:56:18 PM UTC+1 Lucas Matos wrote: > I tested

How can i Open binary files with Django?

2023-02-13 Thread Lucas Matos
I tested so many ways to do it, however a only found how to open text files. Someone can help me? -- 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 dj

Re: Open source CBT Application

2022-11-08 Thread muhammed yayi
How can I join in. I will love to contribute On Tue, Nov 8, 2022, 6:25 AM Sherif Adigun wrote: > Looking for an active Django Project to contribute and collaborate on? > > Join me on Django CBT. > > https://github.com/adigunsherif/cbt > > Let build a reliable open sourc

Re: Open source CBT Application

2022-11-07 Thread Adekola Aderonmu
gt; Join me on Django CBT. > > https://github.com/adigunsherif/cbt > > Let build a reliable open source Computer Based Test Software on Django > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe fro

Re: Open source CBT Application

2022-11-07 Thread odeyale kehinde
Yes.  On Tuesday, November 8, 2022 at 06:25:03 AM GMT+1, Sherif Adigun wrote: Looking for an active Django Project to contribute and collaborate on?  Join me on Django CBT. https://github.com/adigunsherif/cbt Let build a reliable open source Computer Based Test Software on Django

Open source CBT Application

2022-11-07 Thread Sherif Adigun
Looking for an active Django Project to contribute and collaborate on? Join me on Django CBT. https://github.com/adigunsherif/cbt Let build a reliable open source Computer Based Test Software on Django -- You received this message because you are subscribed to the Google Groups "D

The DjangoCon US 2022 Call for Proposals is open

2022-05-11 Thread Drew Winstel
Hi everyone, I'm pleased to announce that the Call for Proposals for the 2022 edition of DjangoCon US is open! https://2022.djangocon.us/news/announcing-call-for-proposals/ You'll find information about opportunity grant applications in that link as well. Thanks, Drew Winstel Vice President

Re: Resource leaks from FieldFile's implicit open?

2022-02-03 Thread Carsten Fuchs
cessing the > `size` attribute also seems to be opening it, which is probably suboptimal.) Yes, and e.g. the `width` attribute if it is an image... I had a look at the code, but there are still a *lot* of open questions. At this time, I consider to not use FileField at all but to use plain

Re: Resource leaks from FieldFile's implicit open?

2022-02-02 Thread Antonis Christofides
, whenever a `FieldFile` is instantiated, `Storage.open()` is called. Thus, if the underlying storage is the `FileSystemStorage`, a Python file object is opened. However, how is this file handle closed again? It looks as if it stays open until garbage collected, that is, possibly for a very

Resource leaks from FieldFile's implicit open?

2022-02-01 Thread Carsten Fuchs
le closed again? It looks as if it stays open until garbage collected, that is, possibly for a very long time. Another consequence besides the potential resource leak seems to be that the implicit open will raise an exception if the file that the `FieldFile` refers to doesn't exist. As I don't exactly

Re: libespeak.so.1: cannot open shared object file: No such file or directory

2021-07-22 Thread Kasper Laudrup
On 22/07/2021 01.15, A- KASH wrote: > Thanks Kasper, I mean that  it's working fine before deployment but > after deployment it's not working, also installed espeak but still not > working. > Thanks, that was exactly the kind of information I was requesting. In that case it would probably be the

Re: libespeak.so.1: cannot open shared object file: No such file or directory

2021-07-21 Thread A- KASH
line ,its working fine on my > > labtop but after deployment its not working ,getting error > > that libespeak.so.1: cannot open shared object file: No such file or > > directory. > > > > That's easy to solve. Just put your laptop online. Problem solved! > > Mo

Re: libespeak.so.1: cannot open shared object file: No such file or directory

2021-07-21 Thread Kasper Laudrup
On 21/07/2021 15.57, A- KASH wrote: > Text to speach pyttsx3 is not working online ,its working fine on my > labtop but after deployment  its not working ,getting error > that libespeak.so.1: cannot open shared object file: No such file or > directory. > That's easy to solve. Just

libespeak.so.1: cannot open shared object file: No such file or directory

2021-07-21 Thread A- KASH
Text to speach pyttsx3 is not working online ,its working fine on my labtop but after deployment its not working ,getting error that libespeak.so.1: cannot open shared object file: No such file or directory. please help. -- You received this message because you are subscribed to the Google

Re: Looking for Django Open Source Projects

2021-07-13 Thread Sharif Mehedi
using it's reference manual but I would like to supplement it with a Open Source project to learn how veteran Django programmers build their web application. By taking a look <https://www.djangosites.org/> I found really great websites but I was unable to decide which one of them goes along the

Looking for Django Open Source Projects

2021-07-13 Thread Utkarsh Singh
Hi Django mailing list, First of all I would like to say "thank you" to Django contributors and maintainers for creating this awesome web framework. Currently I am trying to learn Django using it's reference manual but I would like to supplement it with a Open Source project to learn h

Free Django lessons and open source projects to improve your skills

2021-07-07 Thread Symaxx
Hi there, I have a newly created Python and Django Bootcamp where I cover a lot of the basics and I think this will be a great way to learn for beginners. Link to the playlist: Youtube <https://www.youtube.com/watch?v=YRU-EJPJTB4=PLPrsvk6P2SKF27YaM1q1jf-5SXH8c5c25> I also have some open

Do you ever come across comments expressing anger or happiness when developing open-source software?

2020-09-08 Thread Nathan Cassee
To Whom it may concern, We are an international team of researchers, from the University of Bari, Italy, and Eindhoven University of Technology, the Netherlands. The goal of our research is to help improve the health and long term stability of open-source communities. We would like

Re: Django+DjangoRestFramework+React+Redux open source projects

2020-09-07 Thread sakshi jain
E_commerce website using django On Sun, Sep 6, 2020, 03:01 Shishir Jha wrote: > Look for gothinkster in github > > On Sat, 5 Sep 2020, 10:20 pm Yogendra Yadav, > wrote: > >> Please suggest open source projects to learn subject combination >> >> -- >>

Re: Django+DjangoRestFramework+React+Redux open source projects

2020-09-06 Thread Shishir Jha
ng google. > > On Sun, 6 Sep 2020, 9:43 am Yogendra Yadav, > wrote: > >> thank you, can you please suggest some more >> >> On Sun, Sep 6, 2020 at 3:01 AM Shishir Jha >> wrote: >> >>> Look for gothinkster in github >>> >>> On Sat,

Re: Django+DjangoRestFramework+React+Redux open source projects

2020-09-05 Thread Shishir Jha
Look for gothinkster in github >> >> On Sat, 5 Sep 2020, 10:20 pm Yogendra Yadav, >> wrote: >> >>> Please suggest open source projects to learn subject combination >>> >>> -- >>> You received this message because you are subscribed to the Go

Re: Django+DjangoRestFramework+React+Redux open source projects

2020-09-05 Thread Yogendra Yadav
thank you, can you please suggest some more On Sun, Sep 6, 2020 at 3:01 AM Shishir Jha wrote: > Look for gothinkster in github > > On Sat, 5 Sep 2020, 10:20 pm Yogendra Yadav, > wrote: > >> Please suggest open source projects to learn subject combination >> >>

Re: Django+DjangoRestFramework+React+Redux open source projects

2020-09-05 Thread Shishir Jha
Look for gothinkster in github On Sat, 5 Sep 2020, 10:20 pm Yogendra Yadav, wrote: > Please suggest open source projects to learn subject combination > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

Django+DjangoRestFramework+React+Redux open source projects

2020-09-05 Thread Yogendra Yadav
Please suggest open source projects to learn subject combination -- 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...@google

Django + OpenCV : open webcam take pictures and save them

2020-08-12 Thread Samara Muñoz
Hi, I am doing a project where I am trying to open a camera (webcam and/or IP cam), then I would like to have a bottom, and every time I click it the frames/images are saved. I followed this tutorial by Sanket Sawardekar: https://github.com/sawardekar/Django_VideoStream https://www.youtube.com

RES: Command open postgresql in from cmd in windows

2020-05-31 Thread Samuel Nogueira
You’re welcome  De: sunday honestyEnviado:domingo, 31 de maio de 2020 06:19Para: django-users@googlegroups.comAssunto: Re: Command open postgresql in from cmd in windows It worked Samuel. Thank you very much On Sun, May 31, 2020, 7:38 AM sunday honesty <honesty202...@gmail.com> wrote:All

Re: Command open postgresql in from cmd in windows

2020-05-31 Thread sunday honesty
gt;>> wrote: >>> >>>> Sorry but i think your screenshot wasn’t attached to your last email, >>>> please end it again >>>> >>>> *De: *sunday honesty >>>> *Enviado:*sábado, 30 de maio de 2020 18:28 >>>>

Re: Command open postgresql in from cmd in windows

2020-05-31 Thread sunday honesty
;>> *De: *sunday honesty >>> *Enviado:*sábado, 30 de maio de 2020 18:28 >>> *Para: *django-users@googlegroups.com >>> *Assunto: *Re: Command open postgresql in from cmd in windows >>> >>> >>> >>> Here is the screenshot... Pls

Re: Command open postgresql in from cmd in windows

2020-05-30 Thread Samuel Nogueira
Samuel Nogueira > wrote: > >> Sorry but i think your screenshot wasn’t attached to your last email, >> please end it again >> >> *De: *sunday honesty >> *Enviado:*sábado, 30 de maio de 2020 18:28 >> *Para: *django-users@googlegroups.com >> *Assu

Re: Command open postgresql in from cmd in windows

2020-05-30 Thread sunday honesty
om > *Assunto: *Re: Command open postgresql in from cmd in windows > > > > Here is the screenshot... Pls download. > > > > PS: I was connected to the internet and also tried it without internet > connection. > > > > On Sat, May 30, 2020, 10:17 PM Samuel Nogueira

RES: Command open postgresql in from cmd in windows

2020-05-30 Thread Samuel Nogueira
Sorry but i think your screenshot wasn’t attached to your last email, please end it againDe: sunday honestyEnviado:sábado, 30 de maio de 2020 18:28Para: django-users@googlegroups.comAssunto: Re: Command open postgresql in from cmd in windows Here is the screenshot... Pls download. PS: I

Re: Command open postgresql in from cmd in windows

2020-05-30 Thread sunday honesty
> *Enviado:*sábado, 30 de maio de 2020 15:18 > *Para: *django-users@googlegroups.com > *Assunto: *Re: Command open postgresql in from cmd in windows > > > > @Samuel, > > I did that and psql now opened and prompted me to enter password for my > user name(syste

RES: Command open postgresql in from cmd in windows

2020-05-30 Thread Samuel Nogueira
Can you send  me more details about the error? A screenshot should be enoughDe: sunday honestyEnviado:sábado, 30 de maio de 2020 15:18Para: django-users@googlegroups.comAssunto: Re: Command open postgresql in from cmd in windows @Samuel,I did that and psql now opened and prompted me to enter

Re: Command open postgresql in from cmd in windows

2020-05-30 Thread sunday honesty
honesty > *Enviado:*sábado, 30 de maio de 2020 14:20 > *Para: *Django users > *Assunto: *Command open postgresql in from cmd in windows > > > > I have been in a message before I could successfully install postgresql on > my windows; it seems everyone is using Linux or Mac

Re: Command open postgresql in from cmd in windows

2020-05-30 Thread Jorge Gimeno
seems everyone is using Linux or Mac. > > Pls can someone help me now... > I want to open postgres she'll from my command prompt so I can continue > what am learning... The Tutorial am following is using Linux and the > command to "psql" to open shell is not working on

RES: Command open postgresql in from cmd in windows

2020-05-30 Thread Samuel Nogueira
: sunday honestyEnviado:sábado, 30 de maio de 2020 14:20Para: Django usersAssunto: Command open postgresql in from cmd in windows I have been in a message before I could successfully install postgresql on my windows; it seems everyone is using Linux or Mac. Pls can someone help me now...I want to open

Command open postgresql in from cmd in windows

2020-05-30 Thread sunday honesty
I have been in a message before I could successfully install postgresql on my windows; it seems everyone is using Linux or Mac. Pls can someone help me now... I want to open postgres she'll from my command prompt so I can continue what am learning... The Tutorial am following is using Linux

Re: I am building an open source School Management System

2020-05-09 Thread johnf
gt;                         Latest commits now have authentications > >                         On Tuesday, May 5, 2020 at 9:37:26 PM UTC+1, >                         Sherif Adigun wrote: > >                             I am currently building an

Re: I am building an open source School Management System

2020-05-09 Thread Milos Miljkovic
Do you need any ui/ux/web design assistance on this? if yes, send any comments/ideas/needs you have in mind, I would love to contribute! Τη Τρίτη, 5 Μαΐου 2020 - 11:37:26 μ.μ. UTC+3, ο χρήστης Sherif Adigun έγραψε: > > I am currently building an open source school Management System on

Re: I am building an open source School Management System

2020-05-09 Thread ola neat
t; > >>> > On Wed, May 6, 2020 at 4:21 PM Sherif Adigun >>> > >> > <mailto:adigunshe...@gmail.com>> wrote: >>> > >>> > Thanks. Checked. Good job.

Re: I am building an open source School Management System

2020-05-09 Thread Adedotun Richard
:21 PM Sherif Adigun >> > > > <mailto:adigunshe...@gmail.com>> wrote: >> > >> > Thanks. Checked. Good job. I think I've got more >> > features than y

Re: I am building an open source School Management System

2020-05-09 Thread ola neat
0 at 4:21 PM Sherif Adigun > > > <mailto:adigunshe...@gmail.com>> wrote: > > > > Thanks. Checked. Good job. I think I've got more > > features than y

Re: I am building an open source School Management System

2020-05-08 Thread Kasper Laudrup
hecked. Good job. I think I've got more features than you. Latest commits now have authentications On Tuesday, May 5, 2020 at 9:37:26 PM UTC+1, Sherif Adigun wrote:

Re: I am building an open source School Management System

2020-05-08 Thread Sherif Adigun
erif Adigun >>>>> wrote: >>>>> >>>>>> Thanks. Checked. Good job. I think I've got more features than you. >>>>>> >>>>>> Latest commits now have authentications >>>>>> >>>>>> O

Re: I am building an open source School Management System

2020-05-08 Thread Motaz Hejaze
repository on your github account. >>>> >>>> On Wed, May 6, 2020 at 4:21 PM Sherif Adigun >>>> wrote: >>>> >>>>> Thanks. Checked. Good job. I think I've got more features than you. >>>>> >>>>> Latest c

Re: I am building an open source School Management System

2020-05-08 Thread Hedrick Godson's
Thanks. Checked. Good job. I think I've got more features than you. >>>> >>>> Latest commits now have authentications >>>> >>>> On Tuesday, May 5, 2020 at 9:37:26 PM UTC+1, Sherif Adigun wrote: >>>>> >>>>> I am currently buil

Re: I am building an open source School Management System

2020-05-08 Thread Duah Sylvester
ccount. >> >> On Wed, May 6, 2020 at 4:21 PM Sherif Adigun >> wrote: >> >>> Thanks. Checked. Good job. I think I've got more features than you. >>> >>> Latest commits now have authentications >>> >>> On Tuesday, May 5, 2020 at 9:3

Re: I am building an open source School Management System

2020-05-08 Thread Sherif Adigun
I've got more features than you. >> >> Latest commits now have authentications >> >> On Tuesday, May 5, 2020 at 9:37:26 PM UTC+1, Sherif Adigun wrote: >>> >>> I am currently building an open source school Management System on >>> django and it's curren

Re: I am building an open source School Management System

2020-05-08 Thread Luqman Shofuleji
if Adigun wrote: >> >> I am currently building an open source school Management System on django >> and it's currently available on GitHub. >> >> https://github.com/adigunsherif/Django-School-Management-System >> >> I need contributors and collaborat

Re: I am building an open source School Management System

2020-05-06 Thread Sherif Adigun
Thanks. Checked. Good job. I think I've got more features than you. Latest commits now have authentications On Tuesday, May 5, 2020 at 9:37:26 PM UTC+1, Sherif Adigun wrote: > > I am currently building an open source school Management System on django > and it's currently available

Re: I am building an open source School Management System

2020-05-06 Thread Milson Munakami
Thanks, now it is loading as desired. Try my repo also: https://github.com/Milstein/Student_Management_System may be this is a bit more functional what you are looking for. On Wed, May 6, 2020 at 4:39 AM Sherif Adigun wrote: > Now updated. Please confirm it's working fine now. > > -- > You

Re: I am building an open source School Management System

2020-05-06 Thread Sherif Adigun
Now updated. Please confirm it's working fine now. -- 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...@googlegroups.com. To view this

Re: I am building an open source School Management System

2020-05-06 Thread Sherif Adigun
net::ERR_ABORTED 404 (Not Found) >> 127.0.0.1/:277 GET http://127.0.0.1:8000/static/dist/js/adminlte.js >> net::ERR_ABORTED 404 (Not Found) >> 127.0.0.1/:280 GET http://127.0.0.1:8000/static/dist/js/demo.js >> net::ERR_ABORTED 404 (Not Found) >> >> On Tue, May 5, 2020 at

Re: I am building an open source School Management System

2020-05-06 Thread Sherif Adigun
et::ERR_ABORTED 404 (Not Found) > 127.0.0.1/:277 GET http://127.0.0.1:8000/static/dist/js/adminlte.js > net::ERR_ABORTED 404 (Not Found) > 127.0.0.1/:280 GET http://127.0.0.1:8000/static/dist/js/demo.js > net::ERR_ABORTED 404 (Not Found) > > On Tue, May 5, 2020 at 3:38 PM Sherif A

Re: I am building an open source School Management System

2020-05-05 Thread Milson Munakami
(Not Found) 127.0.0.1/:277 GET http://127.0.0.1:8000/static/dist/js/adminlte.js net::ERR_ABORTED 404 (Not Found) 127.0.0.1/:280 GET http://127.0.0.1:8000/static/dist/js/demo.js net::ERR_ABORTED 404 (Not Found) On Tue, May 5, 2020 at 3:38 PM Sherif Adigun wrote: > I am currently building an open sou

I am building an open source School Management System

2020-05-05 Thread Sherif Adigun
I am currently building an open source school Management System on django and it's currently available on GitHub. https://github.com/adigunsherif/Django-School-Management-System I need contributors and collaboration. Feel free to fork me on GitHub, send a message and let's build a solution

Re: French Open Source ?

2020-03-16 Thread Ysahiro Yasuo
Tu pourrais faire aussi une recherche sur Github. On Mon, Mar 16, 2020, 21:49 Florent Vandroy wrote: > Je préférerais un projet en petit comité, ambiance start-up > > Le lun. 16 mars 2020 à 22:38, Ysahiro Yasuo a > écrit : > >> Cherche *Zulip master* sur Github. C'est

Re: French Open Source ?

2020-03-16 Thread N'BE SORO
Ok Le lun. 16 mars 2020 à 21:49, Florent Vandroy a écrit : > Je préférerais un projet en petit comité, ambiance start-up > > Le lun. 16 mars 2020 à 22:38, Ysahiro Yasuo a > écrit : > >> Cherche *Zulip master* sur Github. C'est un projet Django open-source tu >> pe

Re: French Open Source ?

2020-03-16 Thread Ysahiro Yasuo
Moi je cherche projet remunéré On Mon, Mar 16, 2020, 21:41 KONE GOMPOU LOUA ALASSANE < gompou.k...@uvci.edu.ci> wrote: > Ok ça marche > > Le lun. 16 mars 2020 à 21:39, Ysahiro Yasuo a > écrit : > >> Cherche *Zulip master* sur Github. C'est un projet Django open-source

Re: French Open Source ?

2020-03-16 Thread KONE GOMPOU LOUA ALASSANE
Ok ça marche Le lun. 16 mars 2020 à 21:39, Ysahiro Yasuo a écrit : > Cherche *Zulip master* sur Github. C'est un projet Django open-source tu > peux cloner le depot en local. > > On Mon, Mar 16, 2020, 21:12 Florent Vandroy > wrote: > >> Sorry but this message is for

Re: French Open Source ?

2020-03-16 Thread Ysahiro Yasuo
Cherche *Zulip master* sur Github. C'est un projet Django open-source tu peux cloner le depot en local. On Mon, Mar 16, 2020, 21:12 Florent Vandroy wrote: > Sorry but this message is for the french member, so i will write in French. > > Bonjour à tous, > Je recherche un projet open

Re: French Open Source ?

2020-03-16 Thread KONE GOMPOU LOUA ALASSANE
Quel genre ? Juste pour les compétences avec code sources partagé ou un projet rémunéré ? Thks Le lun. 16 mars 2020 à 21:13, Florent Vandroy a écrit : > Sorry but this message is for the french member, so i will write in French. > > Bonjour à tous, > Je recherche un projet open so

Re: Active Open Source Project to contribute to

2020-03-12 Thread maninder singh Kumar
;> >> >> >> On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: >>> >>> Hi friends, I'm a django/vue js junior developer, does anyone has or >>> knows beginner friendly open source projects I can start contributing to. >>> >

Re: Active Open Source Project to contribute to

2020-03-12 Thread kayitare elie
i am also django junior developer . i want to contribute and work with you as well. -- 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

Re: Active Open Source Project to contribute to

2020-03-12 Thread 'Samson Chapuramhuka' via Django users
and put it up on Github by this weekend. Stay tuned, I will be posting updates here. On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: Hi friends, I'm a django/vue js junior developer, does anyone has or knows beginner friendly open source projects I can start contributing to. Thanks

Re: Active Open Source Project to contribute to

2020-03-12 Thread Jayabal
posting updates here. > > > > > On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: >> >> Hi friends, I'm a django/vue js junior developer, does anyone has or >> knows beginner friendly open source projects I can start contributing to. >>

Re: Active Open Source Project to contribute to

2020-03-11 Thread shree hari
Thank you. -- 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...@googlegroups.com. To view this discussion on the web visit

Re: Active Open Source Project to contribute to

2020-03-11 Thread ranjan jha
junior developer, does anyone has or knows > beginner friendly open source projects I can start contributing to. > > Thanks. > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving e

Re: Active Open Source Project to contribute to

2020-03-11 Thread Vikash Chitransh
>> If you guys want to join in then let me know and we can take this >> conversation in some channel. >> >> regards >> >> On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: >>> >>> Hi friends, I'm a django/vue js junior devel

Re: Active Open Source Project to contribute to

2020-03-11 Thread Kevin Dublin
discussion has already started, > thought of putting it in here now itself. > > If you guys want to join in then let me know and we can take this > conversation in some channel. > > regards > > On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: >> >&g

Re: Active Open Source Project to contribute to

2020-03-11 Thread maninder singh Kumar
, 2020 at 4:58 AM Johnson wrote: > Hi friends, I'm a django/vue js junior developer, does anyone has or knows > beginner friendly open source projects I can start contributing to. > > Thanks. > > -- > You received this message because you are subscribed to the Google Gr

Re: Active Open Source Project to contribute to

2020-03-11 Thread Shakil Ahmmed
I am Also Interested. Please give me chance to contribute . On Wed, Mar 11, 2020 at 11:25 PM Desh Deepak wrote: > Interested > Share your project... > > > On Wed, Mar 11, 2020 at 10:49 PM shree hari > wrote: > >> Im interested >> >> -- >> You received this message because you are subscribed to

Re: Active Open Source Project to contribute to

2020-03-11 Thread Desh Deepak
Interested Share your project... On Wed, Mar 11, 2020 at 10:49 PM shree hari wrote: > Im interested > > -- > 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

Re: Active Open Source Project to contribute to

2020-03-11 Thread shree hari
Im interested -- 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...@googlegroups.com. To view this discussion on the web visit

Re: Active Open Source Project to contribute to

2020-03-11 Thread KONE GOMPOU LOUA ALASSANE
self. > > If you guys want to join in then let me know and we can take this > conversation in some channel. > > regards > > On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: >> >> Hi friends, I'm a django/vue js junior developer, does

Re: Active Open Source Project to contribute to

2020-03-11 Thread ranjan jha
te: > > Hi friends, I'm a django/vue js junior developer, does anyone has or knows > beginner friendly open source projects I can start contributing to. > > Thanks. > -- You received this message because you are subscribed to the Google Groups "Django users" group. T

Re: Active Open Source Project to contribute to

2020-03-11 Thread ranjan jha
release with lots of bugs etc. We were planning to open-source this from the beginning but wanted to shape it till MVP. Since the topic came up, we are kind off announcing and inviting people here. Right now the project is in very initial stages and uses plain simple HTML/CSS/JS for frontend

Re: Active Open Source Project to contribute to

2020-03-11 Thread shree hari
start a project and > update our knowledge. > > Thank you and looking forward to hear from you. > Sam > > On Wed, Mar 11, 2020 at 10:28 AM Johnson > wrote: > >> Hi friends, I'm a django/vue js junior developer, does anyone has or >> knows beginner friendly open source

Re: Active Open Source Project to contribute to

2020-03-11 Thread Mohit Batra
I Also wanna work with all of you On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: > > Hi friends, I'm a django/vue js junior developer, does anyone has or knows > beginner friendly open source projects I can start contributing to. > > Thanks. > -- You rec

Re: Active Open Source Project to contribute to

2020-03-11 Thread Mohit Batra
hi Mohit this side I am also interested to work with you guys On Wednesday, March 11, 2020 at 4:58:43 AM UTC+5:30, Johnson wrote: > > Hi friends, I'm a django/vue js junior developer, does anyone has or knows > beginner friendly open source projects I can start contributing to. &

Active Open Source Project to contribute to

2020-03-11 Thread EVA
Hi johnson I am also a beginner and would like to work with you in this project -- 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

Re: Active Open Source Project to contribute to

2020-03-10 Thread Johnson
Hi Sam, great, i've sent you a message. Cheers! On Wednesday, March 11, 2020 at 12:28:43 AM UTC+1, Johnson wrote: > > Hi friends, I'm a django/vue js junior developer, does anyone has or knows > beginner friendly open source projects I can start contributing to. > > Thanks. >

Re: Active Open Source Project to contribute to

2020-03-10 Thread Sam Perera
ngo/vue js junior developer, does anyone has or knows > beginner friendly open source projects I can start contributing to. > > Thanks. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from

Active Open Source Project to contribute to

2020-03-10 Thread Johnson
Hi friends, I'm a django/vue js junior developer, does anyone has or knows beginner friendly open source projects I can start contributing to. Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Re: guys help me please, page doesn't open image

2020-03-06 Thread Omkar Parab
On Fri, Mar 6, 2020, 5:46 PM Omar Abou Mrad wrote: > > https://docs.djangoproject.com/en/3.0/howto/static-files/#configuring-static-files > > {% load static %} > > > On Fri, Mar 6, 2020 at 2:04 PM Aly_34_04 MR_34_04 < > allaberdi16yazha...@gmail.com> wrote: > >> it doesn't work, I tried( >>

Re: guys help me please, page doesn't open image

2020-03-06 Thread Wasim Rana
Hi use single quote ‘product.image.url’ and it should be work On Fri, 6 Mar, 2020 at 6:17 PM, Omar Abou Mrad wrote: > > https://docs.djangoproject.com/en/3.0/howto/static-files/#configuring-static-files > > {% load static %} > > > On Fri, Mar 6, 2020 at 2:04 PM Aly_34_04 MR_34_04 < >

Re: guys help me please, page doesn't open image

2020-03-06 Thread Omar Abou Mrad
https://docs.djangoproject.com/en/3.0/howto/static-files/#configuring-static-files {% load static %} On Fri, Mar 6, 2020 at 2:04 PM Aly_34_04 MR_34_04 < allaberdi16yazha...@gmail.com> wrote: > it doesn't work, I tried( > [06/Mar/2020 15:01:39] "GET /products/ HTTP/1.1" 200 1719 > Not Found:

Re: guys help me please, page doesn't open image

2020-03-06 Thread Aly_34_04 MR_34_04
it doesn't work, I tried( [06/Mar/2020 15:01:39] "GET /products/ HTTP/1.1" 200 1719 Not Found: /products/3.png [06/Mar/2020 15:01:39] "GET /products/3.png HTTP/1.1" 404 2137 On Friday, March 6, 2020 at 2:35:52 PM UTC+3, Omkar Parab wrote: > > {{ product.image.url }} > > On Fri, Mar 6, 2020,

Re: guys help me please, page doesn't open image

2020-03-06 Thread Omkar Parab
{{ product.image.url }} On Fri, Mar 6, 2020, 4:50 PM Aly_34_04 MR_34_04 < allaberdi16yazha...@gmail.com> wrote: > [image: Capture.JPG] > Enter code here... > #django templates > > {% extends 'base.html' %} > {% block content %} > Products > > {% for product in products %} > > > > >

guys help me please, page doesn't open image

2020-03-06 Thread Aly_34_04 MR_34_04
[image: Capture.JPG] Enter code here... #django templates {% extends 'base.html' %} {% block content %} Products {% for product in products %} {{product.name}} $ {{product.price}} add to card {% endfor %} {% endblock %}... #python code class Product(models.Model):

  1   2   3   4   5   6   7   >