RE: get_FOO_display not working ?

2020-02-22 Thread Mike Dewhirst
Maybe the choices should beSTATUS = [    ('draft', _('Draft')),    ...]I think the migration system might detect a change in the model every time it is run because the get_text_lazy() function can return a non-static result. Not sure about that.I haven't used _() myself but I have used methods

Django - CreateView not saving form with nested formset

2020-02-22 Thread Shazia Nusrat
Hi, Can someone help to answer the question in link? Also I've been trying to get CreateView working with 5 inline formsets but couldn't make it work. Will really appreciate your help if someone can help me with working example. Question:

Re: ValueError: set_wakeup_fd only works in main thread on Apache2.4.41 + Python 3.8.1 + Django 3.0.2 + MySQL 8.0.19

2020-02-22 Thread Jorge Gimeno
On Sat, Feb 22, 2020 at 9:02 PM Siddharth Agarwal wrote: > Hello > When I run my Django Web application with Apache2.4.41 + Python 3.8.1 + > Django 3.0.2 + MySQL 8.0.19 on Windows 10 Professional 64 bit version it > throws Value Error at /. set_wakeup_fd only works in main thread. > > This issue

Re: get_FOO_display not working ?

2020-02-22 Thread Nde Nguti
CHOICES =(('draft', 'Draft'), ) On Sun, Feb 23, 2020, 05:48 Yves de Champlain wrote: > Hi > > I'm using StatusModel from models_utils : > > class MetaData(TimeStampedModel, StatusModel, SoftDeletableModel): > STATUS = Choices(('draft', _('Draft')), > ('submitted',

Re: get_FOO_display not working ?

2020-02-22 Thread Nde Nguti
Try ('draft', 'Draft') not ('draft', ('Draft')) On Sun, Feb 23, 2020, 05:48 Yves de Champlain wrote: > Hi > > I'm using StatusModel from models_utils : > > class MetaData(TimeStampedModel, StatusModel, SoftDeletableModel): > STATUS = Choices(('draft', _('Draft')), >

get_FOO_display not working ?

2020-02-22 Thread Yves de Champlain
Hi I'm using StatusModel from models_utils : class MetaData(TimeStampedModel, StatusModel, SoftDeletableModel): STATUS = Choices(('draft', _('Draft')), ('submitted', _('Submitted')), ('underreview', _('Underreview')), ) Forms

Django- ajax passing multiple values to the url

2020-02-22 Thread Raj Narayan
I am trying to get more details on clicking a button "type="button" class="apireq"" defined on each row and capture the result in javascript and show it in a window I am not able to get the clicked row data in jquery .It says variable value undefined .I wanted to POST multiple values . Is this

Re: Ui/Ux to Django

2020-02-22 Thread Rupesh kumar
You can start by working around views and templates. https://docs.djangoproject.com/en/3.0/topics/templates/ On Sunday, 23 February 2020 04:31:12 UTC+5:30, nawal benmohamed wrote: > > *how to work with Ui/Ux to Django plz i need help * > -- You received this message because you are subscribed

Re:

2020-02-22 Thread Suraj Kumar
Please guided me to where I have selenium python for automation On Sun 23 Feb, 2020, 3:53 AM Gurmeet Kaur, wrote: > I also know how to write selenium code in integration with Python. I can > help too. > > > Thanks, > Gurmeet Kaur > > On Sat, Feb 22, 2020 at 9:09 AM Suraj Kumar < >

Ui/Ux to Django

2020-02-22 Thread nawal benmohamed
*how to work with Ui/Ux to Django plz i need help * -- 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:

2020-02-22 Thread Gurmeet Kaur
I also know how to write selenium code in integration with Python. I can help too. Thanks, Gurmeet Kaur On Sat, Feb 22, 2020 at 9:09 AM Suraj Kumar wrote: > Do you know Automation through Python. > I want to learn automation tools. > > Tools like appium, selenium > > -- > You received this

Re: Bulk SMS website using django

2020-02-22 Thread Julio Henrique Oliveira
Hello, I have experience with this kind of work. Let me known if I can help you. Best regards. Júlio. On Fri, 21 Feb 2020 at 04:52 Isaac Imafidon wrote: > I have a project to develop a bulk sms website using django, but i have > not develop this kind of website before. Also the client want

Re:

2020-02-22 Thread Eduardo Cervantes
Yup. I am writing a script right now to automate photo uploads to Instagram using selenium and pyautogui. Cheers, Eduardo https://eddyizm.github.io/resume/ 714.900.3339 On Sat, Feb 22, 2020, 09:20 ROHAN Gupta wrote: > Check this out:- >

Re: Python Django Training

2020-02-22 Thread Sandip Nath
Sir, I am also interested. But how the class will be conducted. Please inform. On Saturday, 1 February 2020 19:12:52 UTC+5:30, Srikanth K wrote: > > Hi, > > I am from Hyderabad. I am Python Developer by Profession. I am eager take > up any Python , Django Training (online Preferrable or

Re: Python Django Training

2020-02-22 Thread Matthieu Angeli
Hello, Thank you for the message. Me too I would be interested in joining these sessions. Cheers, Matt Il giorno ven 21 feb 2020 alle ore 13:55 Emmanuel klutse ha scritto: > Hello, I’m also interested. Please add me to the list. > Thanks > > On Fri, 21 Feb 2020 at 1:52 PM, Irfan Khan

Re:

2020-02-22 Thread ROHAN Gupta
Check this out:- https://realpython.com/modern-web-automation-with-python-and-selenium/ On Sat, 22 Feb 2020, 19:39 Suraj Kumar, wrote: > Do you know Automation through Python. > I want to learn automation tools. > > Tools like appium, selenium > > -- > You received this message because you are

Re:

2020-02-22 Thread Saswat Ray
Nope *Thanks*, *Saswat* https://www.linkedin.com/in/saswat-ray-27313316/ https://www.quora.com/profile/Saswat-Ray On Sat, Feb 22, 2020 at 7:39 PM Suraj Kumar wrote: > Do you know Automation through Python. > I want to learn automation tools. > > Tools like appium, selenium > > -- > You

RE: Django mysql db issue

2020-02-22 Thread stephen mwangi
Sent from Mail for Windows 10 From: Integr@te System Sent: Saturday, February 22, 2020 4:12 PM To: django-users@googlegroups.com Subject: Re: Django mysql db issue Hi Maturure, Plz look at limitation of char field and option in dj doc:

Re: NoReverseMatch at /sitemap.xml

2020-02-22 Thread Yash Garg
Please help me to resolve this issue. On Wednesday, February 19, 2020 at 10:13:07 PM UTC+5:30, Yash Garg wrote: > > When i'm loading sitemap.xml for my site i'm getting this error > > > Reverse for 'blog-detail' with arguments '('This is my title slug', '2020', > '2', '19')' not found. 1

Re: .objects.all() issue

2020-02-22 Thread Kolluri Mounish
Issue Resolved! Thank you so much @Ryan Gedwill. i actually did some modifications to column name and forgot to migrate it. -- 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: .objects.all() issue

2020-02-22 Thread Ryan Gedwill
Can we see the code for the model? Are you sure the column name is author_id, and have you ensured it’s actually been migrated and exists in your database? Ryan Gedwill > On Feb 22, 2020, at 7:14 AM, Kolluri Mounish wrote: > >  > I have imported Post. But still i'm facing same issue. > -- >

Re: .objects.all() issue

2020-02-22 Thread Kolluri Mounish
I have imported Post. But still i'm facing same issue. -- 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: .objects.all() issue

2020-02-22 Thread Vishnu Thuletiya
You have to import Post first. On Sat, 22 Feb 2020, 7:51 pm Kolluri Mounish, wrote: > Hi all, > > I recently started learning Django. while practicing i come across the > following issue. > > while running Post.objects.all() command on modules i am facing following > error > > > Thanks in

Re: Python Django Training

2020-02-22 Thread Nde Nguti
I am interested Srikanth. Nde ND. Tel: 00237 675079262 Cameroon. On Fri, Feb 21, 2020, 14:52 Irfan Khan wrote: > Hi > How you conducting the sessions and please add me into the group > > On Sat, 1 Feb 2020 at 7:12 PM, Srikanth K wrote: > >> Hi, >> >> I am from Hyderabad. I am Python Developer

.objects.all() issue

2020-02-22 Thread Kolluri Mounish
Hi all, I recently started learning Django. while practicing i come across the following issue. while running Post.objects.all() command on modules i am facing following error Thanks in advance Kolluri Mounish -- You received this message because you are subscribed to the Google Groups

Re: Python Django Training

2020-02-22 Thread Franck Tchouanga
Please add me too in the python training On Sat, Feb 22, 2020, 15:10 Hector Gonzalez wrote: > I interest please add me!!! > El 21 feb. 2020 9:54 AM, "Emmanuel klutse" escribió: > >> Hello, I’m also interested. Please add me to the list. >> Thanks >> >> On Fri, 21 Feb 2020 at 1:52 PM, Irfan

[no subject]

2020-02-22 Thread Suraj Kumar
Do you know Automation through Python. I want to learn automation tools. Tools like appium, selenium -- 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: Python Django Training

2020-02-22 Thread Hector Gonzalez
I interest please add me!!! El 21 feb. 2020 9:54 AM, "Emmanuel klutse" escribió: > Hello, I’m also interested. Please add me to the list. > Thanks > > On Fri, 21 Feb 2020 at 1:52 PM, Irfan Khan wrote: > >> Hi >> How you conducting the sessions and please add me into the group >> >> On Sat, 1

Re: Django mysql db issue

2020-02-22 Thread Integr@te System
Hi Maturure, Plz look at limitation of char field and option in dj doc: https://docs.djangoproject.com/en/dev/ref/databases/#character-fields On Sat, Feb 22, 2020, 14:52 Perceval Maturure wrote: > Dear all > > Is there anyone experiencing the below with python3.7 Django 2.2 > >

Re: Bulk SMS website using django

2020-02-22 Thread Aniket Jain
You can text me on my number +91-9606132131 On Fri, 21 Feb, 2020, 1:21 PM Isaac Imafidon, wrote: > I have a project to develop a bulk sms website using django, but i have > not develop this kind of website before. Also the client want to be able to > have users that log in and buy credit that

Re: Bulk SMS website using django

2020-02-22 Thread Jani Eric
+923351931286 On Fri, Feb 21, 2020 at 7:44 PM Isaac Imafidon wrote: > Thanks alot for your support. I have visited Twilo website, and see their > packages its very good. Thanks alot i think i will go with Twilo. > > On Fri, 21 Feb 2020 at 15:20, Jody Fitzpatrick < >

Re: Refer web page to Another Whatsapp Number

2020-02-22 Thread Vivek Jha
Refer this Answer of Stackoverflow https://stackoverflow.com/questions/21935149/sharing-link-on-whatsapp-from-mobile-website-not-application-for-android On Sat, 22 Feb 2020, 15:57 Balaji Shetty, wrote: > Hi > > Can anyone please suggest me how can i achieve the following task > > If my web

Refer web page to Another Whatsapp Number

2020-02-22 Thread Balaji Shetty
Hi Can anyone please suggest me how can i achieve the following task If my web site have a particular page which is liked by the user. My web site user want to share. this page with his friend on whatsapp. So web site will have share Button which will redirect him to Whatsapp App. He will