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 to fill up choices 
lists with just that outcome. I had to finalize the list prior to running 
migrate.Not much help I knowGood luckMike
 Original message From: Yves de Champlain  
Date: 23/2/20  15:47  (GMT+10:00) To: Django users 
 Subject: get_FOO_display not working ? HiI'm 
using StatusModel from models_utils :class MetaData(TimeStampedModel, 
StatusModel, SoftDeletableModel):    STATUS = Choices(('draft', _('Draft')),    
                 ('submitted', _('Submitted')),                     
('underreview', _('Underreview')),                      )Forms using STATUS 
work as expected, but when I load an object from the DB, I can't access the 
human readable data in my templates.a.status => drafta.get_status_display => 
draftinstead ofa.status => drafta.get_status_display => DraftThanks for any hep 
on this !



-- 
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 
https://groups.google.com/d/msgid/django-users/d7a06913-39a8-4e55-9799-ebc46cb5cde4%40googlegroups.com.

-- 
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 
https://groups.google.com/d/msgid/django-users/5e522a9f.1c69fb81.cae91.b7f5SMTPIN_ADDED_MISSING%40gmr-mx.google.com.


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:
https://stackoverflow.com/questions/60354976/django-createview-not-saving-form-with-nested-formset

Regards,

Shazia

-- 
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 
https://groups.google.com/d/msgid/django-users/CAD83tOx%3D0DBWuGQT4c-zp0gK7PGm5JG2KQnKgCjOWD7q7NoscQ%40mail.gmail.com.


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 was a result of regression in Python 3.8 and was fixed in
> November in later builds of Python. For more details -
> https://bugs.python.org/issue38563.
>
> Stacktrace of the error is as follows -
>
> Environment:
>
>
> Request Method: GET
> Request URL: http://127.0.0.1/
>
> Django Version: 3.0.2
> Python Version: 3.8.1
> Installed Applications:
> ['Analysis.apps.AnalysisConfig',
> 'django.contrib.admin',
> 'django.contrib.auth',
> 'django.contrib.contenttypes',
> 'django.contrib.sessions',
> 'django.contrib.messages',
> 'django.contrib.staticfiles',
> 'django.contrib.humanize']
> Installed Middleware:
> ['django.middleware.security.SecurityMiddleware',
> 'django.contrib.sessions.middleware.SessionMiddleware',
> 'django.middleware.common.CommonMiddleware',
> 'django.middleware.csrf.CsrfViewMiddleware',
> 'django.contrib.auth.middleware.AuthenticationMiddleware',
> 'django.contrib.messages.middleware.MessageMiddleware',
> 'django.middleware.clickjacking.XFrameOptionsMiddleware']
>
>
>
> Traceback (most recent call last):
>   File "c:\python38\lib\site-packages\django\core\handlers\exception.py",
> line 34, in inner
> response = get_response(request)
>   File "c:\python38\lib\site-packages\django\core\handlers\base.py", line
> 115, in _get_response
> response = self.process_exception_by_middleware(e, request)
>   File "c:\python38\lib\site-packages\django\core\handlers\base.py", line
> 113, in _get_response
> response = wrapped_callback(request, *callback_args, **callback_kwargs
> )
>   File "F:\IndianMarketAnalysis\ISMA\Analysis\views.py", line 8, in home
> date_list = dict(d.date_list())
>   File "F:\IndianMarketAnalysis\ISMA\Analysis\models.py", line 7, in
> date_list
> with connection.cursor() as cursor:
>   File "c:\python38\lib\site-packages\django\utils\asyncio.py", line 19,
> in inner
> event_loop = asyncio.get_event_loop()
>   File "c:\python38\lib\asyncio\events.py", line 636, in get_event_loop
> self.set_event_loop(self.new_event_loop())
>   File "c:\python38\lib\asyncio\events.py", line 656, in new_event_loop
> return self._loop_factory()
>   File "c:\python38\lib\asyncio\windows_events.py", line 310, in __init__
> super().__init__(proactor)
>   File "c:\python38\lib\asyncio\proactor_events.py", line 632, in __init__
> signal.set_wakeup_fd(self._csock.fileno())
>
> Exception Type: ValueError at /
> Exception Value: set_wakeup_fd only works in main thread
>
>
>
> Further, this application works very well on local Development Environment
> using - python manage.py runserver.
>
> Please suggest the next steps to move forward.
>
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/5dceb145-7d89-4bd0-a3cf-24dd5155891a%40googlegroups.com
> 
> .
>

 This is fixed and will be released with 3.8.2, per what I've read.  If
running 3.8.2 release candidate 2 isn't an option, is downgrading to Python
3.7 an option?

-Jorge

-- 
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 
https://groups.google.com/d/msgid/django-users/CANfN%3DK-A7K_p4oy%2B4a99xWWphk7e4ZzzY%2BxqwggZRSSK4jGVyQ%40mail.gmail.com.


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', _('Submitted')),
>  ('underreview', _('Underreview')),
>   )
>
> Forms using STATUS work as expected, but when I load an object from the
> DB, I can't access the human readable data in my templates.
>
> a.status => draft
> a.get_status_display => draft
>
> instead of
>
> a.status => draft
> a.get_status_display => Draft
>
> Thanks for any hep on this !
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/d7a06913-39a8-4e55-9799-ebc46cb5cde4%40googlegroups.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CALfkE84BbTc47u0TGL_PWYNXpoXjs0rsZUG4rjSBNySd8SLGyw%40mail.gmail.com.


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')),
>  ('submitted', _('Submitted')),
>  ('underreview', _('Underreview')),
>   )
>
> Forms using STATUS work as expected, but when I load an object from the
> DB, I can't access the human readable data in my templates.
>
> a.status => draft
> a.get_status_display => draft
>
> instead of
>
> a.status => draft
> a.get_status_display => Draft
>
> Thanks for any hep on this !
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/d7a06913-39a8-4e55-9799-ebc46cb5cde4%40googlegroups.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CALfkE84yXRmXK-34WLxHq_yVMWMf8ngghORVuX4GXdzeXk6f8g%40mail.gmail.com.


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 using STATUS work as expected, but when I load an object from the DB, 
I can't access the human readable data in my templates.

a.status => draft
a.get_status_display => draft

instead of

a.status => draft
a.get_status_display => Draft

Thanks for any hep on this !

-- 
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 
https://groups.google.com/d/msgid/django-users/d7a06913-39a8-4e55-9799-ebc46cb5cde4%40googlegroups.com.


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 the way to do it ? Do 
I need to modify urls.py 

template
--

 
{% for index, row in s_results.iterrows %} 

   {{ row.colname }}   {{ row.dbname }}   {{ 
row.schemaname }}   {{ row.tablenm }} 
   {{ row.coltype }}   {{ row.collength }}   
{{ row.colscale }}   
 
  
{% endfor %}
 
  
js/app.js
--
$('.apireq').click( function() {
var jq_column_name=  $("#collist tr").last().attr("data-colname");
var jq_dbname=  $("#collist tr").last().attr("data-dbname");
var jq_schemaname=  $("#collist tr").last().attr("data-schemaname");
var jq_tablenm=  $("#collist tr").last().attr("data-tablenm");
$.ajax({
 type: "POST",
  url : "http://localhost:8000/refresh1/;,
  contentType: 'application/json; charset=utf-8',
  data: { 
column_name:jq_column_name,db_name:jq_dbname,schema_name:jq_schemaname,table_name:jq_tablenm
 
},
 success : function (data) {
  alert("success!!"); 
},
  error : alert("Failed!!")
 }); 
});

urls.py
---
path('refresh',
 
views.refresh1, name='refresh1'),

-- 
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 
https://groups.google.com/d/msgid/django-users/04e7e9be-1748-4ccc-9ef0-3ee06f22b9ce%40googlegroups.com.


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 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 
https://groups.google.com/d/msgid/django-users/bb689d85-bcfa-4966-8e4f-bfdcfc462e54%40googlegroups.com.


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 <
> surajsrivastava021...@gmail.com> wrote:
>
>> 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 django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CACCwaoVZuL2awcQyPo0YPHaaB3k51PsxbN70NOJotXyctaYvCA%40mail.gmail.com
>> 
>> .
>>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CAEbKJVjevR0vx%3DCSh4ef%3DHd9synON0B%2BC_3fOQZqOkTM%2BJ79%3Dw%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CACCwaoXxEoPUVAmQtvTpgR1%3Dz%2BsqgJGauO6s6cEbLUH4PLZxOg%40mail.gmail.com.


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 discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f69fe9f6-2119-4e44-b919-852665b7fb66%40googlegroups.com.


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 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
> https://groups.google.com/d/msgid/django-users/CACCwaoVZuL2awcQyPo0YPHaaB3k51PsxbN70NOJotXyctaYvCA%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAEbKJVjevR0vx%3DCSh4ef%3DHd9synON0B%2BC_3fOQZqOkTM%2BJ79%3Dw%40mail.gmail.com.


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 to be able to
> have users that log in and buy credit that they will use to send sms to any
> part of the world. Also i don't know any recommended company to buy the
> reseller at an affordable price that will make my client be able to make
> profit from he's business. I really need you guys support on this, also if
> anyone have develop this kind of website before and just brief me on how to
> go about 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 it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1707833a-44c2-43f9-8f66-c7fca1a2540d%40googlegroups.com
> 
> .
>
-- 
--

*Júlio Henrique de OliveiraItapeva - SP*

-- 
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 
https://groups.google.com/d/msgid/django-users/CAAhYsTxRXxtqXJ6gUOqA_0f-iigvOqR2c_uVAqRpGJOpqp2tZg%40mail.gmail.com.


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:-
>  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 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
>> https://groups.google.com/d/msgid/django-users/CACCwaoVZuL2awcQyPo0YPHaaB3k51PsxbN70NOJotXyctaYvCA%40mail.gmail.com
>> 
>> .
>>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CAGbkg7pv2PHauitkOCTdybVG0rYVc8-wpN8ZdF%3DA_NUWMZRSQQ%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CALZhWrfugVQWiVjyGexMyGh5kwr6VhzkhViEMZG%3DqOBs4QOk7Q%40mail.gmail.com.


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 Weekends). Members 
> who require can contact me or share me  there idea.
>
> Regards,
> Srikanth.K
>

-- 
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 
https://groups.google.com/d/msgid/django-users/b2dbf703-5a30-4b18-969f-4fd83e717535%40googlegroups.com.


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  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 by Profession. I am eager
>>> take up any Python , Django Training (online Preferrable or Weekends).
>>> Members who require can contact me or share me  there idea.
>>>
>>> Regards,
>>> Srikanth.K
>>>
>>> --
>>> 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
>>> https://groups.google.com/d/msgid/django-users/CACPyz-gXb7wo9E0Uhs_pnxF9X52uA10__Fq1xt4trjXUaN3ehQ%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> 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
>> https://groups.google.com/d/msgid/django-users/CALKGVio8O2efruksWSwh3H_Vo0viO5LBQ%2BK1HTi-rBsoeuHeLA%40mail.gmail.com
>> 
>> .
>>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CAAw18mBn1BVJYdFWxahQrknUpxOT%2BprcOA4NJsxRHNoNdP5mhg%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAAaUALhtyYy-fRwBj6AQFxgsk5%3DvHEWgVnTMje0-ALspALQwjA%40mail.gmail.com.


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 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
> https://groups.google.com/d/msgid/django-users/CACCwaoVZuL2awcQyPo0YPHaaB3k51PsxbN70NOJotXyctaYvCA%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAGbkg7pv2PHauitkOCTdybVG0rYVc8-wpN8ZdF%3DA_NUWMZRSQQ%40mail.gmail.com.


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 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
> https://groups.google.com/d/msgid/django-users/CACCwaoVZuL2awcQyPo0YPHaaB3k51PsxbN70NOJotXyctaYvCA%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAEhPkLHN8WAeeThjApE851t9k5jSvoKhwzUZjUxxZ_d-Lg31Eg%40mail.gmail.com.


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:
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

django.db.utils.OperationalError: (1074, "Column length too big for column 
'url' (max = 16383); use BLOB or TEXT instead")

-- 
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 
https://groups.google.com/d/msgid/django-users/5F0F1C12-C0D9-4B3E-8659-2048103658D2%40gmail.com.
-- 
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 
https://groups.google.com/d/msgid/django-users/CAP5HUWq0zB3dtr1WdhyrNj1CiXKOgM1SCSPkF6wwD7yh%2BMNkWw%40mail.gmail.com.

-- 
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 
https://groups.google.com/d/msgid/django-users/5e5157e9.1c69fb81.f46ec.36c2%40mx.google.com.


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 pattern(s) tried: 
> ['blog\\/(?P[0-9]+)\\/(?P[0-9]+)\\/(?P[0-9]+)\\/(?P[-a-zA-Z0-9_]+)$']
>
> sitemap.py 
>
> class BlogSitemap(Sitemap):
> priority = 0.5
> changefreq = 'daily'
>
> def  items(self):
> return Blog.objects.filter(status=1)
> 
> def location(self, item):
> return reverse('blog-detail', args = (item.slug, 
> str(item.blog_published_at.year), str(item.blog_published_at.month), 
> str(item.blog_published_at.day)))
>
> Models.py
> class Blog(models.Model):
>
> STATUS = (
> (0,"Draft"),
> (1,"Publish")
> )
>
> blog_title = models.CharField(_("Blog Title For Slug"), 
> validators=[MinLengthValidator(8)], max_length=120, blank=False,null=False)
> title = models.CharField(_("Blog Title"), 
> validators=[MinLengthValidator(8)], max_length=120, blank=True,null=False)
> slug = models.SlugField(_("Slug"), max_length=200, unique = True, blank = 
> True)
> meta_tag = models.TextField(_("Blog Meta tags"), null = False, blank= 
> True)
> banner_text = models.CharField(_("Top Banner Text Overlay"), max_length = 
> 50, null = False)
> banner_image = models.FileField(_("Banner Image"), blank=True)
> blog_abstract = models.TextField(_("Blog Abstract"), max_length= 500, 
> blank = False, null = False)
> blog_published_at = models.DateField(_("Blog published date") , blank = 
> False, default = timezone.now)
> blog_image = models.FileField(_("Blog Image"), blank=True)
> def __str__(self):
> return self.title
>
> class Meta:
> ordering = ['-blog_published_at']
> db_table = '"public_blog"'
>
> def get_absolute_url(self):
> return reverse('blog-detail', args=(self.slug, 
> self.blog_published_at.year, self.blog_published_at.month, 
> self.blog_published_at.day))
>
> def save(self):
> super(Blog, self).save()
> self.slug = slugify(self.blog_title)
> super(Blog, self).save()
> urls.py 
>
> path('sitemap.xml', sitemap, {'sitemaps':sitemaps}, name = 'sitemap'),
>
> How can i resolve this issue?
>
> 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 
https://groups.google.com/d/msgid/django-users/7afdb4f4-ac77-4495-b558-9042fd70cf29%40googlegroups.com.


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 it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/fe15e751-d6d7-4509-8a08-96a9eb7ac77e%40googlegroups.com.


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.
> -- 
> 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 
> https://groups.google.com/d/msgid/django-users/e2ec91fe-b5e7-4341-b263-6a951f7f1a3f%40googlegroups.com.

-- 
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 
https://groups.google.com/d/msgid/django-users/751B9F2E-8C05-4DE9-8387-3A1301806834%40gmail.com.


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 discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e2ec91fe-b5e7-4341-b263-6a951f7f1a3f%40googlegroups.com.


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 advance
> Kolluri Mounish
>
>
>
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/2955b960-bacc-4db2-afc4-b625551f8b95%40googlegroups.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CACggCHtywVuQ2-qsL0%3DLTN5znJiORWprTEJOdqMXUiJvMr9nBw%40mail.gmail.com.


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 by Profession. I am eager take
>> up any Python , Django Training (online Preferrable or Weekends). Members
>> who require can contact me or share me  there idea.
>>
>> Regards,
>> Srikanth.K
>>
>> --
>> 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
>> https://groups.google.com/d/msgid/django-users/CACPyz-gXb7wo9E0Uhs_pnxF9X52uA10__Fq1xt4trjXUaN3ehQ%40mail.gmail.com
>> 
>> .
>>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CALKGVio8O2efruksWSwh3H_Vo0viO5LBQ%2BK1HTi-rBsoeuHeLA%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CALfkE87UGWbPOZAQWQ8siwJ3tWBCz%2BLD6wsYsVPQgX_x73qNUg%40mail.gmail.com.


.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 
"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 
https://groups.google.com/d/msgid/django-users/2955b960-bacc-4db2-afc4-b625551f8b95%40googlegroups.com.


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 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 by Profession. I am eager
 take up any Python , Django Training (online Preferrable or Weekends).
 Members who require can contact me or share me  there idea.

 Regards,
 Srikanth.K

 --
 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
 https://groups.google.com/d/msgid/django-users/CACPyz-gXb7wo9E0Uhs_pnxF9X52uA10__Fq1xt4trjXUaN3ehQ%40mail.gmail.com
 
 .

>>> --
>>> 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
>>> https://groups.google.com/d/msgid/django-users/CALKGVio8O2efruksWSwh3H_Vo0viO5LBQ%2BK1HTi-rBsoeuHeLA%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> 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
>> https://groups.google.com/d/msgid/django-users/CAAw18mBn1BVJYdFWxahQrknUpxOT%2BprcOA4NJsxRHNoNdP5mhg%40mail.gmail.com
>> 
>> .
>>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CA%2BT_vrDdG%2B2KB1y6cv89c423a_ezoNMHnh%3D%3D3jdGyf49xyiF9A%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CANRJ%3D3n%2BOSuLmKrj1y%2BZz9s9-9cvwXmyowbwamymWCKCbuVXjw%40mail.gmail.com.


[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 django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACCwaoVZuL2awcQyPo0YPHaaB3k51PsxbN70NOJotXyctaYvCA%40mail.gmail.com.


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 Feb 2020 at 7:12 PM, 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 Weekends).
>>> Members who require can contact me or share me  there idea.
>>>
>>> Regards,
>>> Srikanth.K
>>>
>>> --
>>> 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 https://groups.google.com/d/
>>> msgid/django-users/CACPyz-gXb7wo9E0Uhs_pnxF9X52uA10__
>>> Fq1xt4trjXUaN3ehQ%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> 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 https://groups.google.com/d/
>> msgid/django-users/CALKGVio8O2efruksWSwh3H_Vo0viO5LBQ%2BK1HTi-rBsoeuHeLA%
>> 40mail.gmail.com
>> 
>> .
>>
> --
> 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 https://groups.google.com/d/
> msgid/django-users/CAAw18mBn1BVJYdFWxahQrknUpxOT%2BprcOA4NJsxRHNoNdP5mhg%
> 40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CA%2BT_vrDdG%2B2KB1y6cv89c423a_ezoNMHnh%3D%3D3jdGyf49xyiF9A%40mail.gmail.com.


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
>
> django.db.utils.OperationalError: (1074, "Column length too big for column
> 'url' (max = 16383); use BLOB or TEXT instead")
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/5F0F1C12-C0D9-4B3E-8659-2048103658D2%40gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAP5HUWq0zB3dtr1WdhyrNj1CiXKOgM1SCSPkF6wwD7yh%2BMNkWw%40mail.gmail.com.


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 they will use to send sms to any
> part of the world. Also i don't know any recommended company to buy the
> reseller at an affordable price that will make my client be able to make
> profit from he's business. I really need you guys support on this, also if
> anyone have develop this kind of website before and just brief me on how to
> go about 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 it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/1707833a-44c2-43f9-8f66-c7fca1a2540d%40googlegroups.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CADV%2BovLScpn-FwzJLatiyKQAS%2BkYSM81cLNxmnYevB3n_c95WQ%40mail.gmail.com.


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 <
> jody.lee.fitzpatr...@gmail.com> wrote:
>
>> Hi, look at Twilio. They seem to be a great choice, cost is going to vary
>> - just charge extra per message on top of what they charge. Building out
>> this service on your own will be difficult without the help of a third
>> party to send the messages.
>>
>> --
>> 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
>> https://groups.google.com/d/msgid/django-users/cdcfc982-6504-4eee-917d-b2414c6a89d7%40googlegroups.com
>> 
>> .
>>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CADzUEaibv%3DAmjz08%2B%3DeM2agmfWZt2kqSP0BD-e%2BSQcdEkqPTDw%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAEh2BED2oG-CWEVSnDTLJbe%2BCJa-E1Y1K9V3w5n5WBn%3DB_kpcQ%40mail.gmail.com.


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 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 select his friend Whatapp number and page will be shared with
> another user.
>
> --
>
>
> *Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,*
> *SGGS Institute of Engineering & Technology, Vishnupuri, Nanded.MH.India*
> *Official: bsshe...@sggs.ac.in  *
> *  Mobile: +91-9270696267*
>
> --
> 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
> https://groups.google.com/d/msgid/django-users/CAECSbOtNqdf6a5Uh8h2RoznR4CNAn7usw9Wdibb6ZSBWdrevRw%40mail.gmail.com
> 
> .
>

-- 
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 
https://groups.google.com/d/msgid/django-users/CAMriZeEPPMeUantiMCHu%3Ddfm9r_iXViSKN%3DqNNiZ-Q6xEaRY0w%40mail.gmail.com.


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 select his friend Whatapp number and page will be shared with
another user.

-- 


*Mr. Shetty Balaji S.Asst. ProfessorDepartment of Information Technology,*
*SGGS Institute of Engineering & Technology, Vishnupuri, Nanded.MH.India*
*Official: bsshe...@sggs.ac.in  *
*  Mobile: +91-9270696267*

-- 
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 
https://groups.google.com/d/msgid/django-users/CAECSbOtNqdf6a5Uh8h2RoznR4CNAn7usw9Wdibb6ZSBWdrevRw%40mail.gmail.com.