Add multiple domains to the same Heroku appp

2020-08-14 Thread sunday honesty
Hi guys, hope you're good! I have deployed my django project to Heroku. Now, I have another project with different domain name. Can you tell me how to add this second domains? I am thinking of say "heroku domains add: domain_name" but then how do I configure things to work correctly? I need

Re: eWallet-django

2020-08-14 Thread Haris Ahmad
Watch tutorial of codewithharry on youtube that's a good tutorial for ecommerce, or watch dennis ivy tutorials on youtube On Fri, 14 Aug 2020, 11:50 PM sakshi jain, wrote: > I'm also want some guidance for e_commerce website using django > > On Fri, Aug 14, 2020, 23:45 Haris Ahmad wrote: > >>

Re: Add multiple domains to the same Heroku appp

2020-08-14 Thread sunday honesty
Or do I need to create another app or another account on heroku? If it's just another app, how to I login to a access a particular app on my CLI? On Fri, Aug 14, 2020, 6:04 PM sunday honesty wrote: > Hi guys, hope you're good! > > I have deployed my django project to Heroku. Now, I have another

FileField Model Required

2020-08-14 Thread cyril....@gmail.com
Hi, Is it possible to mark a FileField in my model as required My model looks like : class FileUpload(models.Model): owner = models.CharField(max_length=200,blank=False, null=False) record = models.FileField(upload_to=path_and_rename,blank=False, null=False) 1st statement : According to what i

eWallet-django

2020-08-14 Thread Haris Ahmad
Hello everyone, Hope you're good! I'm new to django, I have followed some tutorials regarding Ecommerce, know I want to start working on eWallet project. any kind of help will be appreciated, if someone want to work with me on this project , here is the github link to my account , HarisAhmad43

[no subject]

2020-08-14 Thread Peter Kirieny
hello, my data from json file didn't load into the server, i can't see them in my admin interface anybody to assist please -- 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

type error

2020-08-14 Thread Peter Kirieny
hello, can somebody help with this please match = datetime_re.match(value) TypeError: expected string or bytes-like object I've made migrations but now i can't migrate, it brings the above error instead -- You received this message because you are subscribed to the Google Groups "Django

Re: Ecommerce website

2020-08-14 Thread sakshi jain
HELP FOR MAKING THIS WEBSITE On Fri, Aug 14, 2020, 21:07 puneetm...@gmail.com wrote: > https://groups.google.com/g/django-users/c/Ks5QbFO0VX0any solution fo > this? > > > On Friday, August 14, 2020 at 3:39:57 PM UTC+5:30 agnese.c...@gmail.com > wrote: > >> If you want to build an ecommerce

Re: eWallet-django

2020-08-14 Thread sakshi jain
I'm also want some guidance for e_commerce website using django On Fri, Aug 14, 2020, 23:45 Haris Ahmad wrote: > Hello everyone, Hope you're good! > > I'm new to django, I have followed some tutorials regarding Ecommerce, > know I want to start working on eWallet project. > > any kind of help

chatbot application

2020-08-14 Thread Md Moradul Siddique
Hello everyone, I want to developing a django project like chat app . Any one working on chatapp so help me to build that app or give me the repository. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Learn Python and Django online with practical Approach 4 hours per week now

2020-08-14 Thread Ikechukwu Efughu
Hi Balaji, I'm interested in this course. Kindly include me in the group. Warm regards Ikechukwu Efughu On Wed, Aug 12, 2020, 18:09 Balaji Shetty wrote: > Hi > > We are happy to announce you , you may join Following WhatsApp Group to > learn Basics of Python and Django free of cost with

Re: I want to learn Django

2020-08-14 Thread Kayode Oladipo
Hello John, The docs provide an easy introduction to Django. https://www.djangoproject.com I believe you have already learned Python to a reasonable extent. Regards. Virus-free. www.avg.com

Re: I want to learn Django

2020-08-14 Thread Baptiste Galton
Hello How old are you ? Here is a good start. Regards, BG Le ven. 14 août 2020 à 11:50, Afolayan John a écrit : > Hello I'm just a beginner in learning Django, > > Pls, guys I need a resourceful information on how to learn Django > >

Re: Learn Python and Django online with practical Approach 4 hours per week now

2020-08-14 Thread Chuck
I like to join the group too but the WhatsApp group had been full. On Friday, August 14, 2020, 11:49:45 AM PDT, Ikechukwu Efughu wrote: Hi Balaji,  I'm interested in this course. Kindly include me in the group.  Warm regards Ikechukwu Efughu On Wed, Aug 12, 2020, 18:09 Balaji Shetty

Re: chatbot application

2020-08-14 Thread Karan Sahu
Hi Md, Karan here , i have experience to work on the chat app (Chatbot). Kindly let me know when you are available so we can discuss further. Best, Karan On Sat, Aug 15, 2020 at 12:19 AM Md Moradul Siddique < moradul.just.cs...@gmail.com> wrote: > Hello everyone, I want to developing a django

Re: Ecommerce website

2020-08-14 Thread Karan Sahu
Hi, Karan here, I have an experience to develop the Ecommerce Website. Here are the few projects on which I have work before: 1. Weekly Fruits: https://www.weeklyfruits.in/ 2. Fresh Water System: https://www.freshwatersystems.com/ 3. Junkart: https://www.junkart.in/ Kindly let me know when

Re: chatbot application

2020-08-14 Thread carlos
https://channels.readthedocs.io/en/latest/tutorial/index.html#tutorial On Fri, Aug 14, 2020 at 2:40 PM Karan Sahu wrote: > Hi Md, > Karan here , i have experience to work on the chat app (Chatbot). > > Kindly let me know when you are available so we can discuss further. > > Best, > Karan > >

Re: FileField Model Required

2020-08-14 Thread cyril....@gmail.com
The solution I have found is overriding the save function from the model class: class FileUpload(models.Model): owner = models.CharField(max_length=200,blank=False, null=False) record = models.FileField(upload_to=path_and_rename) def save(self, force_insert=False, force_update=False, *args,

Re: Ecommerce website

2020-08-14 Thread Mahamat A.
Hi karan , I'm muhammed from Turkey, i saw your message on the group then i follow the links to check it out , i found that you made a very great job, congratulations. i'm also creating an E-commerce web site with django, here is mywhatsapp number +9053159653379. if you can give some guide

Re: having an issue with my admin site after an upgrade from django 3.0 to 3.1

2020-08-14 Thread Tobias Lindenberg
I have the same problem, do you have a solution yet? exactmu...@gmail.com schrieb am Dienstag, 11. August 2020 um 20:49:07 UTC+2: > Done that already but still not working and I use another browser but > still the same > > On Tue, 11 Aug 2020, 6:59 pm carlos, wrote: > >> Hi, clean your cache

I want to learn Django

2020-08-14 Thread Afolayan John
Hello I'm just a beginner in learning Django, Pls, guys I need a resourceful information on how to learn Django from beginning to end. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails

Re: ERROR

2020-08-14 Thread Akinfolarin Stephen
can you send the code on github so i can help you debug properly On Fri, Aug 14, 2020 at 11:42 PM Kasper Laudrup wrote: > On 14/08/2020 00.29, traore arouna wrote: > > how define it > > > > https://www.wikihow.com/Declare-a-Variable-in-Javascript > > -- > You received this message because you

Ecommerce website

2020-08-14 Thread tej84.padghan
  Any one working on E-commerce website I wantHelp to develop my E-cart website...thanks  -- 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

What will be best option

2020-08-14 Thread Manas Paul
I have been working on a project, where the project has a Model called Competition and under each completion I have a model called Artwork ( in foreign key relationship). I am using DRF and the problem I am facing is each artwork has a field called approved ( boolean ) and I want to retrieve

Re: having an issue with my admin site after an upgrade from django 3.0 to 3.1

2020-08-14 Thread Exactly musty
Yes I have solved the problem,I made an hard clear cache, and hard refresh or you use django jazzmin On Fri, 14 Aug 2020, 10:50 am Tobias Lindenberg, wrote: > I have the same problem, do you have a solution yet? > > exactmu...@gmail.com schrieb am Dienstag, 11. August 2020 um 20:49:07 > UTC+2:

Re: ERROR

2020-08-14 Thread Kasper Laudrup
On 14/08/2020 00.29, traore arouna wrote: how define it https://www.wikihow.com/Declare-a-Variable-in-Javascript -- 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

Re: Ecommerce website

2020-08-14 Thread Agnese Camellini
If you want to build an ecommerce website with django use "Oscar" an app that builds the ecommerce for you in django Il Ven 14 Ago 2020, 11:50 ha scritto: > > > > > Any one working on E-commerce website I want > > Help to develop my E-cart website...thanks > > > > -- > You received this message

Re:

2020-08-14 Thread Avi shah
Hello Suraj , Kindly send a your code for settings .py , urls.py and views.py so that we could resolve the issue On Fri, Aug 14, 2020 at 7:32 PM Suraj Kumar wrote: > Hi guys, > > I am to new django. > > I am making blog website project. During the making blog website I am > stuck one point for

RE:

2020-08-14 Thread Gaurav Srivastava
Hii, It simply says that template does not exist.Possibly you have given the wrong path in the views section or you didn’t have include the template directory in the settingsCheck your issues will be solved. If you have made your template folder in the app, then you don’t have to include the

Re: Learn Python and Django online with practical Approach 4 hours per week now

2020-08-14 Thread Afolayan John
I'm John I want to partake in the online WhatsApp python course. But I couldn't join becos the group that reached it's limit. Pls I will appreciate if you can add me to the group. Thanks in anticipation. On Wed, Aug 12, 2020, 18:10 Balaji Shetty wrote: > Hi > > We are happy to announce you

Re: Ecommerce website

2020-08-14 Thread puneetm...@gmail.com
https://groups.google.com/g/django-users/c/Ks5QbFO0VX0any solution fo this? On Friday, August 14, 2020 at 3:39:57 PM UTC+5:30 agnese.c...@gmail.com wrote: > If you want to build an ecommerce website with django use "Oscar" an app > that builds the ecommerce for you in django > > Il Ven

Re: DjangoProject

2020-08-14 Thread puneetm...@gmail.com
sir, any solution for this? https://groups.google.com/g/django-users/c/Ks5QbFO0VX0 On Tuesday, August 11, 2020 at 10:51:21 PM UTC+5:30 Adam Johnson wrote: > Hi! > > I think you've found the wrong mailing list for this post. This mailing > list is for discussing the development of Django

Re:

2020-08-14 Thread Suraj Kumar
Yes, I didn't include template path in setting.py. So, that reason template doesn't exist error message coming On Fri 14 Aug, 2020, 20:04 Gaurav Srivastava, wrote: > Hii, > > It simply says that template does not exist. > > Possibly you have given the wrong path in the views section or you

In Django Admin.StackedInline is not working in OneToOneField?

2020-08-14 Thread puneetm...@gmail.com
Below is my Base class class User(AbstractUser): class Meta: verbose_name =_("Student") verbose_name_plural = _("Students") ROLE = ( ('STUDENT', 'Student'), ('TEACHER', 'Teacher'), ('STUDENT-TEACHER', 'Student-Teacher') ) username = models.CharField(verbose_name=_('Username'), max_length=100,

Re:

2020-08-14 Thread Vladimir Zak
Hello, it could be missing your app name in the apps list or your template should be on the place "templates//index.html". Vladimir pá 14. 8. 2020 v 16:01 odesílatel Suraj Kumar < surajsrivastava021...@gmail.com> napsal: > Hi guys, > > I am to new django. > > I am making blog website

RE:

2020-08-14 Thread Vishesh Mangla
https://www.youtube.com/watch?v=UmljXZIypDc Follow this good tutorial. Sent from Mail for Windows 10 From: Suraj KumarSent: 14 August 2020 19:31To: django-users@googlegroups.comSubject:  Hi guys, I am to new django. I am making blog website project. During the making blog website I am stuck one

Re:

2020-08-14 Thread Suraj Kumar
Hello, Can anyone tell me What is the code for template path in setting.py On Fri 14 Aug, 2020, 21:01 Suraj Kumar, wrote: > Yes, I didn't include template path in setting.py. > So, that reason template doesn't exist error message coming > > On Fri 14 Aug, 2020, 20:04 Gaurav Srivastava, < >