Re: why this serializer class is here

2020-03-19 Thread sagar ninave
thanks


On Tue, Mar 17, 2020 at 11:41 PM Kasper Laudrup 
wrote:

> On 18/03/2020 18.16, sagar ninave wrote:
> > is it necessary to right serializers while making post request ?
> >
>
> No
>
> --
> 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/0f218f20-e9a4-206a-88bc-69008841b9d6%40stacktrace.dk
> .
>


-- 

sagar ninave
about.me/sagarninave


-- 
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/CAA6pdZ-Tn5ttiZRW_s-w4DEt7YNU4CtH9n%2BaaCnhWoh5ZNk8QQ%40mail.gmail.com.


Re: It is Possible to send html File through Django Rest api? Please suggest

2020-03-19 Thread Suraj Thapa FC
No

On Thu, 19 Mar 2020, 10:53 am venna venkatReddy, 
wrote:

> It is Possible to send html File through Django Rest API. I need how to
> send Template/one.html file to Other Application when they hit my API.
>
> Please respond or suggest any url
>
> --
> 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/30728453-679d-4016-893a-1e3854bdd895%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/CAPjsHcHWvEvwjtHEe7paKszeE3O31xjcyxeZ%2B9YG50a7VS2gsw%40mail.gmail.com.


Re: Django channel and gunicorn

2020-03-19 Thread Suraj Thapa FC
You can't use gunicorn with django channels...
Use Daphne or uwsgi etc

On Wed, 18 Mar 2020, 11:49 pm N'BE SORO,  wrote:

> hi i have a problem with django channel and gunicorn.
>
> I don't know how to configure my project so that the websocket can pass.
>
>
> 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/CAOtSHp9N%3DoDWVLuj-wK4Aqi6b5AqmLfB_wB14OjoGeza3Y5cdw%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/CAPjsHcFrkONm0ZwLvMSyGUxojPcALDRZ8xv56ccY7sr5POVHQg%40mail.gmail.com.


Help to Create Dynamic Form

2020-03-19 Thread Rahul Roshan


I am trying to create a splitwise  clone 
application for my weekend project. I have arrived at a stage where I have 
to create a new Bill. Please find below screenshot.

In this form I have three queries:

   1. A dynamic form where a model with fields (amount, user) can be added 
   or removed dynamically. I am using modelformset_factory to perform this 
   operation. From the UI's perspective I am using javascript to add two 
   fields based onClick operation and similarly remove onClick, please check 
   code. My question is, is this correct approach from UI's perspective to 
   create dynamic fields using javascript or is there any other right way ?
   2. I am passing users list from views.py to my bill.html template. 
   Again, is this a correct approach ? Or is there any other right way ?
   3. After creating multiple split forms and clicking on create Bill. At 
   the view.py I am receiving only one split form rather than multiple ?? I am 
   thinking something is wrong because of might be above two approaches are 
   not correct !!! Need help over this.

[image: Screenshot 2020-03-19 at 1.31.33 PM.png]


This is the javascript I am using to create split model having two fields 
(amount and user). Providing the existing users list from the users args I 
passed from the views.py
bill.html

> 
> var room = 1;
> function education_fields() {
> room++;
> var objTo = document.getElementById('education_fields')
> var divtest = document.createElement("div");
>divtest.setAttribute("class", "form-group removeclass"+room);
>var rdiv = 'removeclass'+room;
> divtest.innerHTML = '
class="form-group"> class="form-control" id="amount" placeholder="Amount">
class="col-sm-5 nopadding"> >
>
class="input-group"> >
'; > objTo.appendChild(divtest) > } >function remove_education_fields(rid) { > $('.removeclass'+rid).remove(); >} > > > models.py > class Bill(models.Model): > bill_id = models.AutoField(primary_key=True, null=False) > bill_name = models.CharField(max_length=100) > total_amount = models.IntegerField() > > def __str__(self): > return "%s-%s"%(str(self.bill_id), self.bill_name) > > class Split(models.Model): > amount = models.IntegerField() > split_user = models.ForeignKey(User, on_delete=models.CASCADE, null=True) > bill = models.ForeignKey(Bill, on_delete=models.CASCADE, null=False, > default='') > > def __str__(self): > return "%s-%s" % (str(self.bill_id), self.amount) > > forms.py > class BillModelForm(forms.ModelForm): > class Meta: > model = Bill > fields = ('bill_name', 'total_amount') > labels = { > 'bill_name': 'Enter the Expenditure', > 'total_amount': 'Enter the total amount', > } > > SplitFormSet = modelformset_factory( > Split, > fields=('amount','split_user'), > extra=1, > labels = { > 'amount': 'Enter the split amount', > 'split': "Share Friend", > }, > widgets={ > 'amount': forms.TextInput( > attrs={ > 'class': 'form-control', > 'placeholder': 'Amount', > 'id':'amount', > } > ), > 'split_user': forms.Select( > attrs={ > 'class': 'form-control', > 'placeholder': '', > }, > ) > } > ) > > Thanks, Rahul -- 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/c9fbb247-9acf-4ce3-9a61-22ce3d21b661%40googlegroups.com.

Re: Django channel and gunicorn

2020-03-19 Thread Andrew C.
Install uvicorn. Easy integration with gunicorn. There’s a good article
about how to setup your Djsngo 3.0 async websocket app online too now.

On Thu, Mar 19, 2020 at 3:32 AM Suraj Thapa FC 
wrote:

> You can't use gunicorn with django channels...
> Use Daphne or uwsgi etc
>
> On Wed, 18 Mar 2020, 11:49 pm N'BE SORO,  wrote:
>
>> hi i have a problem with django channel and gunicorn.
>>
>> I don't know how to configure my project so that the websocket can pass.
>>
>>
>> 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/CAOtSHp9N%3DoDWVLuj-wK4Aqi6b5AqmLfB_wB14OjoGeza3Y5cdw%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/CAPjsHcFrkONm0ZwLvMSyGUxojPcALDRZ8xv56ccY7sr5POVHQg%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/CAJVmkNmfJfbLQyjO57Uvu2cXBHPmNi5O2RzU-2t6AtsoOxhV3w%40mail.gmail.com.


Django Tutorial

2020-03-19 Thread Eddie Nash
I am going through the tutorial yet when I check to see if it is working, I 
get this error code. Please help me fix this!


Exception in thread django-main-thread:
Traceback (most recent call last):
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py", 
line 932, in _bootstra
p_inner
self.run()
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py", 
line 870, in run
self._target(*self._args, **self._kwargs)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/autoreload
.py", line 53, in wrapper
fn(*args, **kwargs)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
commands/runserver.py", line 117, in inner_run

self.check(display_num_errors=True)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
base.py", line 392, in check
all_issues = self._run_checks(
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
base.py", line 382, in _run_checks
return checks.run_checks(**kwargs)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/regi
stry.py", line 72, in run_checks
new_errors = check(app_configs=app_configs)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/urls
.py", line 40, in check_url_namespaces_unique
all_namespaces = _load_all_namespaces(resolver)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/urls
.py", line 57, in _load_all_namespaces
url_patterns = getattr(resolver, 'url_patterns', [])
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/functional
.py", line 48, in __get__
res = instance.__dict__[self.name] = self.func(instance)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/resolvers.p
y", line 588, in url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", 
self.urlconf_module)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/functional
.py", line 48, in __get__
res = instance.__dict__[self.name] = self.func(instance)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/resolvers.p
y", line 581, in urlconf_module
return import_module(self.urlconf_name)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib/__init__.py",
 
line 127, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)

  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 975, in _find_and_load_unlocked
  File "", line 671, in _load_unlocked
  File "", line 783, in exec_module
  File "", line 219, in 
_call_with_frames_removed
  File "/Users/michellenash/Desktop/Eddie/github/mysite/mysite/urls.py", 
line 20, in 
path('polls/', include('polls.urls')),
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/conf.py",
 
l
ine 34, in include
urlconf_module = import_module(urlconf_module)
  File 
"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib/__init__.py",
 
line 127, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
  File "", line 1014, in _gcd_import
  File "", line 991, in _find_and_load
  File "", line 975, in _find_and_load_unlocked
  File "", line 671, in _load_unlocked
File "", line 779, in exec_module
  File "", line 916, in get_code
  File "", line 846, in source_to_code
  File "", line 219, in 
_call_with_frames_removed
  File "/Users/michellenash/Desktop/Eddie/github/mysite/polls/urls.py", 
line 6
path('', views.index, name'index')
  ^
SyntaxError: invalid syntax

-- 
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/fcf08b9d-587f-4fab-a79c-b0325845b036%40googlegroups.com.


What is the difference between virtual environment and normal code in pycharm

2020-03-19 Thread Ravi Prakash
Hi All

What is the difference between the virtual environment and normal code in 
pycharm?

Can you explain, please


-- 


Virtual Clone


VirtualTech Outsourcing Services Pvt Ltd 

59/B, Plot No. 
4, 5 and 6, Nehru
Nagar (West)

Bhilai, Chhattisgarh - 490 020, India


www.virtualclone.in 







*LEGAL 
DISCLAIMER:* The contents of this electronic communication and any
attached 
documents are strictly confidential and they may not be used or
disclosed 
by someone who is not a named recipient.



If you have received this 
electronic communication in error please notify the
sender by replying to 
this electronic communication inserting the word
"misdirected" as the 
subject and delete this communication from your
system.






-- 
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/f71b0415-e137-4b02-b3d5-a3ecc644be09%40googlegroups.com.


Re: Django Tutorial

2020-03-19 Thread Ryan Nowakowski
Please post your entire urls.py

On March 19, 2020 1:18:40 AM CDT, Eddie Nash  wrote:
>I am going through the tutorial yet when I check to see if it is
>working, I 
>get this error code. Please help me fix this!
>
>
>Exception in thread django-main-thread:
>Traceback (most recent call last):
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>
>line 932, in _bootstra
>p_inner
>self.run()
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>
>line 870, in run
>self._target(*self._args, **self._kwargs)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/autoreload
>.py", line 53, in wrapper
>fn(*args, **kwargs)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
>commands/runserver.py", line 117, in inner_run
>
>self.check(display_num_errors=True)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
>base.py", line 392, in check
>all_issues = self._run_checks(
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
>base.py", line 382, in _run_checks
>return checks.run_checks(**kwargs)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/regi
>stry.py", line 72, in run_checks
>new_errors = check(app_configs=app_configs)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/urls
>.py", line 40, in check_url_namespaces_unique
>all_namespaces = _load_all_namespaces(resolver)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/urls
>.py", line 57, in _load_all_namespaces
>url_patterns = getattr(resolver, 'url_patterns', [])
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/functional
>.py", line 48, in __get__
>res = instance.__dict__[self.name] = self.func(instance)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/resolvers.p
>y", line 588, in url_patterns
>patterns = getattr(self.urlconf_module, "urlpatterns", 
>self.urlconf_module)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/functional
>.py", line 48, in __get__
>res = instance.__dict__[self.name] = self.func(instance)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/resolvers.p
>y", line 581, in urlconf_module
>return import_module(self.urlconf_name)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib/__init__.py",
>
>line 127, in
>import_module
>return _bootstrap._gcd_import(name[level:], package, level)
>
>  File "", line 1014, in _gcd_import
>  File "", line 991, in _find_and_load
>File "", line 975, in
>_find_and_load_unlocked
>  File "", line 671, in _load_unlocked
>File "", line 783, in exec_module
>  File "", line 219, in 
>_call_with_frames_removed
>File "/Users/michellenash/Desktop/Eddie/github/mysite/mysite/urls.py", 
>line 20, in 
>path('polls/', include('polls.urls')),
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/conf.py",
>
>l
>ine 34, in include
>urlconf_module = import_module(urlconf_module)
>  File 
>"/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib/__init__.py",
>
>line 127, in
>import_module
>return _bootstrap._gcd_import(name[level:], package, level)
>  File "", line 1014, in _gcd_import
>  File "", line 991, in _find_and_load
>File "", line 975, in
>_find_and_load_unlocked
>  File "", line 671, in _load_unlocked
>File "", line 779, in exec_module
>  File "", line 916, in get_code
>File "", line 846, in
>source_to_code
>  File "", line 219, in 
>_call_with_frames_removed
> File "/Users/michellenash/Desktop/Eddie/github/mysite/polls/urls.py", 
>line 6
>path('', views.index, name'index')
>  ^
>SyntaxError: invalid syntax
>
>-- 
>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/fcf08b9d-587f-4fab-a79c-b0325845b036%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/069CA506-176E-42C2-AC52-01C904C9FD34%40fattuba.com.


Re: Django Tutorial

2020-03-19 Thread Daniel Hepper
There seems to be an equal sign missing after “name”:

path('', views.index, name='index')

> Am 19.03.2020 um 14:13 schrieb Eddie Nash :
> 
> 
> I am going through the tutorial yet when I check to see if it is working, I 
> get this error code. Please help me fix this!
> 
> 
> Exception in thread django-main-thread:
> Traceback (most recent call last):
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>  line 932, in _bootstra
> p_inner
> self.run()
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
>  line 870, in run
> self._target(*self._args, **self._kwargs)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/autoreload
> .py", line 53, in wrapper
> fn(*args, **kwargs)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
> commands/runserver.py", line 117, in inner_run
> 
> self.check(display_num_errors=True)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
> base.py", line 392, in check
> all_issues = self._run_checks(
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/management/
> base.py", line 382, in _run_checks
> return checks.run_checks(**kwargs)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/regi
> stry.py", line 72, in run_checks
> new_errors = check(app_configs=app_configs)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/urls
> .py", line 40, in check_url_namespaces_unique
> all_namespaces = _load_all_namespaces(resolver)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/core/checks/urls
> .py", line 57, in _load_all_namespaces
> url_patterns = getattr(resolver, 'url_patterns', [])
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/functional
> .py", line 48, in __get__
> res = instance.__dict__[self.name] = self.func(instance)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/resolvers.p
> y", line 588, in url_patterns
> patterns = getattr(self.urlconf_module, "urlpatterns", 
> self.urlconf_module)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/utils/functional
> .py", line 48, in __get__
> res = instance.__dict__[self.name] = self.func(instance)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/resolvers.p
> y", line 581, in urlconf_module
> return import_module(self.urlconf_name)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib/__init__.py",
>  line 127, in
> import_module
> return _bootstrap._gcd_import(name[level:], package, level)
> 
>   File "", line 1014, in _gcd_import
>   File "", line 991, in _find_and_load
>   File "", line 975, in _find_and_load_unlocked
>   File "", line 671, in _load_unlocked
>   File "", line 783, in exec_module
>   File "", line 219, in _call_with_frames_removed
>   File "/Users/michellenash/Desktop/Eddie/github/mysite/mysite/urls.py", line 
> 20, in 
> path('polls/', include('polls.urls')),
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/django/urls/conf.py",
>  l
> ine 34, in include
> urlconf_module = import_module(urlconf_module)
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/importlib/__init__.py",
>  line 127, in
> import_module
> return _bootstrap._gcd_import(name[level:], package, level)
>   File "", line 1014, in _gcd_import
>   File "", line 991, in _find_and_load
>   File "", line 975, in _find_and_load_unlocked
>   File "", line 671, in _load_unlocked
> File "", line 779, in exec_module
>   File "", line 916, in get_code
>   File "", line 846, in source_to_code
>   File "", line 219, in _call_with_frames_removed
>   File "/Users/michellenash/Desktop/Eddie/github/mysite/polls/urls.py", line 6
> path('', views.index, name'index')
>   ^
> SyntaxError: invalid syntax
> -- 
> 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/fcf08b9d-587f-4fab-a79c-b0325845b036%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...@google

Re: What is the difference between virtual environment and normal code in pycharm

2020-03-19 Thread Phako Perez
Hi Ravi,

There is no difference, both works same, however when you use the virtual 
environment, all the package you install will be available only in that venv, 
so you can create an environment per project and each project will have their 
own package list, each with their own version.

On the other hand, normal code you can install any package your projects needs, 
but all will works with same version, if you face a project needs to downgrade 
the version package N, you may face issues with the others projects as this 
will affect directly.

Regards 

Sent from my iPhone

> On 19 Mar 2020, at 7:13, Ravi Prakash  wrote:
> 
> 
> Hi All
> 
> What is the difference between the virtual environment and normal code in 
> pycharm?
> 
> Can you explain, please
> 
> 
> Virtual Clone
> VirtualTech Outsourcing Services Pvt Ltd 
> 59/B, Plot No. 4, 5 and 6, Nehru Nagar (West)
> Bhilai, Chhattisgarh - 490 020, India
> www.virtualclone.in
> 
> 
> LEGAL DISCLAIMER: The contents of this electronic communication and any 
> attached documents are strictly confidential and they may not be used or 
> disclosed by someone who is not a named recipient.
> 
> If you have received this electronic communication in error please notify the 
> sender by replying to this electronic communication inserting the word 
> "misdirected" as the subject and delete this communication from your system.
> 
> 
> -- 
> 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/f71b0415-e137-4b02-b3d5-a3ecc644be09%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/569C72CA-BC31-405F-BD77-B5DAE849456A%40gmail.com.


Re: Django Tutorial

2020-03-19 Thread Imadonmwinyi Osazee
name='index'
You had errors because you missed the = symbol

On Mar 19, 2020 2:13 PM, "Eddie Nash"  wrote:

> I am going through the tutorial yet when I check to see if it is working,
> I get this error code. Please help me fix this!
>
>
> Exception in thread django-main-thread:
> Traceback (most recent call last):
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 932, in _bootstra
> p_inner
> self.run()
>   File 
> "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/threading.py",
> line 870, in run
> self._target(*self._args, **self._kwargs)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/utils/autoreload
> .py", line 53, in wrapper
> fn(*args, **kwargs)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/core/management/
> commands/runserver.py", line 117, in inner_run
>
> self.check(display_num_errors=True)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/core/management/
> base.py", line 392, in check
> all_issues = self._run_checks(
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/core/management/
> base.py", line 382, in _run_checks
> return checks.run_checks(**kwargs)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/core/checks/regi
> stry.py", line 72, in run_checks
> new_errors = check(app_configs=app_configs)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/core/checks/urls
> .py", line 40, in check_url_namespaces_unique
> all_namespaces = _load_all_namespaces(resolver)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/core/checks/urls
> .py", line 57, in _load_all_namespaces
> url_patterns = getattr(resolver, 'url_patterns', [])
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/utils/functional
> .py", line 48, in __get__
> res = instance.__dict__[self.name] = self.func(instance)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/urls/resolvers.p
> y", line 588, in url_patterns
> patterns = getattr(self.urlconf_module, "urlpatterns",
> self.urlconf_module)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/utils/functional
> .py", line 48, in __get__
> res = instance.__dict__[self.name] = self.func(instance)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/urls/resolvers.p
> y", line 581, in urlconf_module
> return import_module(self.urlconf_name)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/importlib/__init__.py", line 127, in
> import_module
> return _bootstrap._gcd_import(name[level:], package, level)
>
>   File "", line 1014, in _gcd_import
>   File "", line 991, in _find_and_load
>   File "", line 975, in
> _find_and_load_unlocked
>   File "", line 671, in _load_unlocked
>   File "", line 783, in exec_module
>   File "", line 219, in
> _call_with_frames_removed
>   File "/Users/michellenash/Desktop/Eddie/github/mysite/mysite/urls.py",
> line 20, in 
> path('polls/', include('polls.urls')),
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/site-packages/django/urls/conf.py", l
> ine 34, in include
> urlconf_module = import_module(urlconf_module)
>   File "/Library/Frameworks/Python.framework/Versions/3.8/lib/
> python3.8/importlib/__init__.py", line 127, in
> import_module
> return _bootstrap._gcd_import(name[level:], package, level)
>   File "", line 1014, in _gcd_import
>   File "", line 991, in _find_and_load
>   File "", line 975, in
> _find_and_load_unlocked
>   File "", line 671, in _load_unlocked
> File "", line 779, in exec_module
>   File "", line 916, in get_code
>   File "", line 846, in
> source_to_code
>   File "", line 219, in
> _call_with_frames_removed
>   File "/Users/michellenash/Desktop/Eddie/github/mysite/polls/urls.py",
> line 6
> path('', views.index, name'index')
>   ^
> SyntaxError: invalid syntax
>
> --
> 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/fcf08b9d-587f-4fab-a79c-b0325845b036%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscri

What is the difference between virtual environment and normal code in pycharm

2020-03-19 Thread cosmos multi
Hi ravi. 
In pycharm the virtual environment is created according to the project you 
choose, making this a little more automatic, making the installation or 
updating of packages more friendly, while a normal one is you who chooses what 
it should have

-- 
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/ba1c33a4-cf39-45ce-98a2-15237d1e9123%40googlegroups.com.


Re: write a new app

2020-03-19 Thread Mohsen Pahlevanzadeh
You mean I implement such as : https://www.django-rest-framework.org/ ?

On Thu, Mar 19, 2020 at 4:34 AM ANi  wrote:
>
> Well, you can write an integrated API service app.
>
> --
> 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/b276e2ef-6b76-4ce1-bcf5-725fa4223c9c%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/CAJFFGZKSQpxa--8RfeYRRNTwbDt-GLO7V-nVx6LELMYnvP-8_g%40mail.gmail.com.


Re: write a new app

2020-03-19 Thread Franck Tchouanga
An app that solves a problem In your community or society

On Wed, Mar 18, 2020, 18:28 Mohsen Pahlevanzadeh 
wrote:

> Dear All,
>
> I need to write an real app for my CV, But I want to write a usable
> app, Not just a app for upload in github. What do you recommend? Of
> course , I don't want to code html/css and js. I want to write only
> back-end.
>
>
> --mohsen
>
> --
> 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/CAJFFGZ%2BfbfpUow9zbJR1AC_cO1gTuCu_4ORcebi7KaEkxWPP7w%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%3D3%3DyFqYhE6933oOHNV-VEwx%2BeKxsyPu9HoqeuCg6EA2kKg%40mail.gmail.com.


unable Integrating Djongo 1.3.1 with django 2.2.10

2020-03-19 Thread Eswar Subramanyam
Hi 

I opted for Djongo to take advantage of Django ORM with MongoDB..

but while starting the server, i get the following error

AppData\Roaming\Python\Python38\site-packages\django\db\utils.py", line 
121, in load_backend
raise ImproperlyConfigured(
django.core.exceptions.ImproperlyConfigured: 'djongo' isn't an available 
database backend.
Try using 'django.db.backends.XXX', where XXX is one of:
'mysql', 'oracle', 'postgresql', 'sqlite3'


I have lost a lot of time trying to figure out, and came to a conclusion 
that i cant use ORM on Mongo DB.

Have someone got a clue on what going wrong ?

I dump also all the installed packages

Thanks for your help/

Package   Version
- --
asgiref   3.2.5
bson  0.5.8
certifi   2019.11.28
chardet   3.0.4
dataclasses   0.6
Django2.2.11
django-menu-generator 1.0.4
djongo1.3.1
idna  2.9
mongoengine   0.19.1
pip   20.0.2
pymango   0.1.1
pymongo   3.10.1
python-dateutil   2.8.1
pytz  2019.3
requests  2.23.0
setuptools41.2.0
six   1.14.0
sqlparse  0.2.4
urllib3   1.25.8

-- 
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/6b10fe72-f834-4eb2-86e9-0595031e4b4a%40googlegroups.com.


Asking for help

2020-03-19 Thread Motaz Hejaze
Hi guys , 
How are you all ? 
Hope you are all fine .. 
Guys i am now for 3 months without any job nor any income , and the news about 
corona make me fear that this period may increase , this will be very because i 
have a daughter to support ..

I didnt want to write such a post , but anyone can help with a job will make a 
great help ... 


Thank you all ..

-- 
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/71df5876-2a3f-4f3e-bf5a-4fa754254710%40googlegroups.com.


Re: Asking for help

2020-03-19 Thread Saswat Ray
Hi,
Please try to post on linkedin as well.It may help


*Thanks*,
*Saswat*





On Fri, Mar 20, 2020 at 6:58 AM Motaz Hejaze  wrote:

> Hi guys ,
> How are you all ?
> Hope you are all fine ..
> Guys i am now for 3 months without any job nor any income , and the news
> about corona make me fear that this period may increase , this will be very
> because i have a daughter to support ..
>
> I didnt want to write such a post , but anyone can help with a job will
> make a great help ...
>
>
> Thank you all ..
>
> --
> 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/71df5876-2a3f-4f3e-bf5a-4fa754254710%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/CAEhPkLGYT8fRnHjujA-iOSaMvATKbwcSANa1%3DEEQexjp%3DKwt9w%40mail.gmail.com.


Re: Asking for help

2020-03-19 Thread Motaz Hejaze
I did , thank you for caring ..

On Fri, 20 Mar 2020, 3:34 am Saswat Ray,  wrote:

> Hi,
> Please try to post on linkedin as well.It may help
>
>
> *Thanks*,
> *Saswat*
>
>
>
>
>
> On Fri, Mar 20, 2020 at 6:58 AM Motaz Hejaze  wrote:
>
>> Hi guys ,
>> How are you all ?
>> Hope you are all fine ..
>> Guys i am now for 3 months without any job nor any income , and the news
>> about corona make me fear that this period may increase , this will be very
>> because i have a daughter to support ..
>>
>> I didnt want to write such a post , but anyone can help with a job will
>> make a great help ...
>>
>>
>> Thank you all ..
>>
>> --
>> 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/71df5876-2a3f-4f3e-bf5a-4fa754254710%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/CAEhPkLGYT8fRnHjujA-iOSaMvATKbwcSANa1%3DEEQexjp%3DKwt9w%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/CAHV4E-cAbXkFBy-3cOp%3DL--ogvk376LfypsHZ85LVSd%3D%3D1HCvQ%40mail.gmail.com.


Re: unable Integrating Djongo 1.3.1 with django 2.2.10

2020-03-19 Thread Khaleel Ahmed H. M. Shariff
Hi Eswar,
May Peace, Blessings & Mercy of Almighty God be on you!

Short answer, your environment is messed up. Now, let us address who or how
was it messed up

There are many reasons why you could be getting this error.
One major issue similar I have frequently faced is in case you have
multiple versions of Python on the same box. Python 2.x & 3.x installed on
the same box. Django version 1.x is compatible with Python 2.x.  Python 3.x
& django 1.x do not work together. In case you have multiple versions of
Python installed, you may have to tweak the PATH to indicate the
appropriate directory in the search path ahead of the other directories.

This is probably your reason for the stuff not working as you have both
2.2.11 & 1.3.1 of Django installed.

1. You may be using an IDE like pycharm/spyder/any other IDE. Normally,
these IDEs try to download packages. In case there is a version mismatch in
the source of the package, there could be a mess up.
2. Your PATH & PYTHONPATH environment variable may not have the relevant
directory or have a different directory with the same file name ahead of
the actual file you want loaded.
3. You may be using a virtualenv. Try to deactivate & try executing the same

Hope this helps.
Kindly share your experience.
Thanks in advance.


God Bless You!
God Bless India!!
--

Love & Regards
Dr. (h.c.) Khaleel Ahmed H. M.

Managing Director, Tanzanite Realty India Private Limited

+91-9845007864

+91-7829777864

---
Human Life is Precious
Koran Surah Ma'idah Chapter 5 Verse 32:
If anyone killed a person, not in retaliation of murder, or (and) to spread
mischief in the land - it would be as if he killed all mankind, & if anyone
saved a life, it would be as if he saved the life of all mankind.


On Fri, Mar 20, 2020 at 2:05 AM Eswar Subramanyam <
eswar.subraman...@gmail.com> wrote:

> Hi
>
> I opted for Djongo to take advantage of Django ORM with MongoDB..
>
> but while starting the server, i get the following error
>
> AppData\Roaming\Python\Python38\site-packages\django\db\utils.py", line
> 121, in load_backend
> raise ImproperlyConfigured(
> django.core.exceptions.ImproperlyConfigured: 'djongo' isn't an available
> database backend.
> Try using 'django.db.backends.XXX', where XXX is one of:
> 'mysql', 'oracle', 'postgresql', 'sqlite3'
>
>
> I have lost a lot of time trying to figure out, and came to a conclusion
> that i cant use ORM on Mongo DB.
>
> Have someone got a clue on what going wrong ?
>
> I dump also all the installed packages
>
> Thanks for your help/
>
> Package   Version
> - --
> asgiref   3.2.5
> bson  0.5.8
> certifi   2019.11.28
> chardet   3.0.4
> dataclasses   0.6
> Django2.2.11
> django-menu-generator 1.0.4
> djongo1.3.1
> idna  2.9
> mongoengine   0.19.1
> pip   20.0.2
> pymango   0.1.1
> pymongo   3.10.1
> python-dateutil   2.8.1
> pytz  2019.3
> requests  2.23.0
> setuptools41.2.0
> six   1.14.0
> sqlparse  0.2.4
> urllib3   1.25.8
>
> --
> 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/6b10fe72-f834-4eb2-86e9-0595031e4b4a%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/CAMjBbiBdqNAfgyg3U2d3Fa9w5Y18eOyyN10OoF9Za8aStKPqyg%40mail.gmail.com.


Re: write a new app

2020-03-19 Thread Andrew C.
If you want to avoid web frontend, then stick to mobile app development.
DRF as someone else mentioned helps. I recommend front end development
because they have guidelines and make thing easier to implement (iOS is
much much easier). You can’t make a usable app without doing both frontend
and backend.

As the last person said, do a project that helps your community. Don’t
think big, or a million dollar app idea, or money in general. Think
impactfulness on YOUR community only.

Backend code is not revolutionary. If you want business logic to be
revolutionary, then find a computer engineering job or code a huge
algorithm. Django and Flask are meant to be full-stack development
packages. When you get a job, you can think backend only, sure, but you’re
asking for a USABLE app; thus, my second paragraph still stands.

On Wed, Mar 18, 2020 at 1:27 PM Mohsen Pahlevanzadeh <
m.pahlevanza...@gmail.com> wrote:

> Dear All,
>
> I need to write an real app for my CV, But I want to write a usable
> app, Not just a app for upload in github. What do you recommend? Of
> course , I don't want to code html/css and js. I want to write only
> back-end.
>
>
> --mohsen
>
> --
> 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/CAJFFGZ%2BfbfpUow9zbJR1AC_cO1gTuCu_4ORcebi7KaEkxWPP7w%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/CAJVmkNm0K7F78OJUO2WwtS8abbWiPgi60fX6wRyq5yaUrBx_mg%40mail.gmail.com.


Re: What is the difference between virtual environment and normal code in pycharm

2020-03-19 Thread Ravi Prakash
Hi Phoka 

Thank you!

On Thursday, March 19, 2020 at 7:13:33 PM UTC+5:30, Phako Perez wrote:
>
> Hi Ravi,
>
> There is no difference, both works same, however when you use the virtual 
> environment, all the package you install will be available only in that 
> venv, so you can create an environment per project and each project will 
> have their own package list, each with their own version.
>
> On the other hand, normal code you can install any package your projects 
> needs, but all will works with same version, if you face a project needs to 
> downgrade the version package N, you may face issues with the others 
> projects as this will affect directly.
>
> Regards 
>
> Sent from my iPhone
>
> On 19 Mar 2020, at 7:13, Ravi Prakash  > wrote:
>
> 
> Hi All
>
> What is the difference between the virtual environment and normal code in 
> pycharm?
>
> Can you explain, please
>
>
> Virtual Clone
>
> VirtualTech Outsourcing Services Pvt Ltd 
> 59/B, Plot No. 4, 5 and 6, Nehru Nagar (West)
> Bhilai, Chhattisgarh - 490 020, India
> www.virtualclone.in
>
> 
>
> *LEGAL DISCLAIMER:* The contents of this electronic communication and any 
> attached documents are strictly confidential and they may not be used or 
> disclosed by someone who is not a named recipient.
>
> If you have received this electronic communication in error please notify 
> the sender by replying to this electronic communication inserting the word 
> "misdirected" as the subject and delete this communication from your system.
>
> 
>
> -- 
> 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...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/f71b0415-e137-4b02-b3d5-a3ecc644be09%40googlegroups.com
>  
> 
> .
>
>
-- 


Virtual Clone


VirtualTech Outsourcing Services Pvt Ltd 

59/B, Plot No. 
4, 5 and 6, Nehru
Nagar (West)

Bhilai, Chhattisgarh - 490 020, India


www.virtualclone.in 







*LEGAL 
DISCLAIMER:* The contents of this electronic communication and any
attached 
documents are strictly confidential and they may not be used or
disclosed 
by someone who is not a named recipient.



If you have received this 
electronic communication in error please notify the
sender by replying to 
this electronic communication inserting the word
"misdirected" as the 
subject and delete this communication from your
system.






-- 
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/e9aa7e19-83f9-48d0-b0bb-fd6935d5f576%40googlegroups.com.