Re: Method call at end of Django session

2015-10-04 Thread Amarjeet Kapoor


On Sunday, 4 October 2015 00:24:22 UTC+5:30, Andréas Kühne wrote:
>
> Hi again,
>
> What I would do is create a django management command (see 
> https://docs.djangoproject.com/en/1.8/howto/custom-management-commands/) 
> and then use cron to call it a regular intervals (5-10 minute intervals for 
> example). 
>
> Another way to do it would be to use celery, which is a delayed job worker 
> and also a cron scheduler (see http://www.celeryproject.org/). Celery has 
> a lot of other functions so if you need to use delayed jobs or need to use 
> jobs that will be fired at intervals, I would recommend using celery, 
> however there is a lot more to configure using celery.
>
> Regards,
>
>  

Thanks, It seems these will work.I will try it and tell if it worked or any 
problem faced by me.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ca2a6f56-4d38-468f-91fb-26ecead9fbdc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


django download

2015-10-04 Thread harish harish
hi friends i am new to use django in my ubuntu laptop 
i want to download django in my ubuntu laptop 
please send link how to download

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3580a25a-2e3f-43c3-a4d0-2368ae20f0ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


NoReverseMatch at /polls/1/

2015-10-04 Thread jahan
Hi Django group,

I'm following the tutorial and get stuck on *part 3, Removing hardcoded 
URLs in templates*

I read through the topics that discuss this, but can't find the issue in my 
case.

my *detail.html* template looks like 

{{ question.question_text }}

{% for choice in question.choice_set.all %}
{{ choice.choice_text }}

{% endfor %}



in my urls.py for the polls project I have 

urlpatterns = [
 url(r'^$', 'index', name="index"),
 url(r'^(?P\d+)/$', views.detail, name="detail"),
 url(r'^(?P\d+)/results/$', 'results', name="results"),
 url(r'^(?P\d+)/vote/$', 'vote', name="vote"),
]

Thanks for any suggestion,
jack

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/298b2f49-8374-4e54-bfd3-639a7de3af7f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django download

2015-10-04 Thread James Schneider
https://docs.djangoproject.com/en/1.8/intro/install/
On Oct 4, 2015 9:24 AM, "harish harish"  wrote:

> hi friends i am new to use django in my ubuntu laptop
> i want to download django in my ubuntu laptop
> please send link how to download
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/3580a25a-2e3f-43c3-a4d0-2368ae20f0ac%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciUUsXFq27rtWpWLhtZC07%3Dx04CQ%3DRJss0yyxPNmxrMaHw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: NoReverseMatch at /polls/1/

2015-10-04 Thread James Schneider
Can you paste the entire error?

Also, read through the error page, it should show you which line is causing
the problem.

-James
On Oct 4, 2015 9:24 AM, "jahan"  wrote:

> Hi Django group,
>
> I'm following the tutorial and get stuck on *part 3, Removing hardcoded
> URLs in templates*
>
> I read through the topics that discuss this, but can't find the issue in
> my case.
>
> my *detail.html* template looks like
>
> {{ question.question_text }}
> 
> {% for choice in question.choice_set.all %}
> {{ choice.choice_text }}
> 
> {% endfor %}
> 
>
>
> in my urls.py for the polls project I have
>
> urlpatterns = [
>  url(r'^$', 'index', name="index"),
>  url(r'^(?P\d+)/$', views.detail, name="detail"),
>  url(r'^(?P\d+)/results/$', 'results', name="results"),
>  url(r'^(?P\d+)/vote/$', 'vote', name="vote"),
> ]
>
> Thanks for any suggestion,
> jack
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/298b2f49-8374-4e54-bfd3-639a7de3af7f%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciXQAJ_AdP4-BjGTwMABHZuMwt0A-_8cCPokaM4KVr5HJw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: NoReverseMatch at /polls/1/

2015-10-04 Thread jahan
Hi James,

This is the error

NoReverseMatch at /polls/1/ 

Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
found. 0 pattern(s) tried: []

Request Method: GET Request URL: http://localhost:8000/polls/1/ Django 
Version: 1.8.4 Exception Type: NoReverseMatch Exception Value: 

Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
found. 0 pattern(s) tried: []

Exception Location: 
/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py 
in _reverse_with_prefix, line 496 Python Executable: /usr/bin/python Python 
Version: 2.7.3 Python Path: 

['/var/www/django/mysite',
 '/usr/lib/python2.7',
 '/usr/lib/python2.7/plat-linux2',
 '/usr/lib/python2.7/lib-tk',
 '/usr/lib/python2.7/lib-old',
 '/usr/lib/python2.7/lib-dynload',
 '/usr/local/lib/python2.7/dist-packages',
 '/usr/lib/python2.7/dist-packages',
 '/usr/lib/python2.7/dist-packages/PIL',
 '/usr/lib/python2.7/dist-packages/gst-0.10',
 '/usr/lib/python2.7/dist-packages/gtk-2.0',
 '/usr/lib/python2.7/dist-packages/ubuntu-sso-client',
 '/usr/lib/python2.7/dist-packages/ubuntuone-client',
 '/usr/lib/python2.7/dist-packages/ubuntuone-control-panel',
 '/usr/lib/python2.7/dist-packages/ubuntuone-couch',
 '/usr/lib/python2.7/dist-packages/ubuntuone-installer',
 '/usr/lib/python2.7/dist-packages/ubuntuone-storage-protocol']

Server time: Sun, 4 Oct 2015 19:31:13 + 
Error during template rendering 

In template /var/www/django/mysite/polls/templates/polls/detail.html, error 
at line *4*
Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
found. 0 pattern(s) tried: [] 1 {{ question.question_text }} 2  
3 {% for choice in question.choice_set.all %} 4 {{ choice.choice_text }} 5 {% endfor %} 6 
 
7 


On Sunday, October 4, 2015 at 9:04:48 PM UTC+2, James Schneider wrote:
>
> Can you paste the entire error? 
>
> Also, read through the error page, it should show you which line is 
> causing the problem.
>
> -James
> On Oct 4, 2015 9:24 AM, "jahan" > wrote:
>
>> Hi Django group,
>>
>> I'm following the tutorial and get stuck on *part 3, Removing hardcoded 
>> URLs in templates*
>>
>> I read through the topics that discuss this, but can't find the issue in 
>> my case.
>>
>> my *detail.html* template looks like 
>>
>> {{ question.question_text }}
>> 
>> {% for choice in question.choice_set.all %}
>> {{ choice.choice_text }}
>> 
>> {% endfor %}
>> 
>>
>>
>> in my urls.py for the polls project I have 
>>
>> urlpatterns = [
>>  url(r'^$', 'index', name="index"),
>>  url(r'^(?P\d+)/$', views.detail, name="detail"),
>>  url(r'^(?P\d+)/results/$', 'results', name="results"),
>>  url(r'^(?P\d+)/vote/$', 'vote', name="vote"),
>> ]
>>
>> Thanks for any suggestion,
>> jack
>>
>> -- 
>> 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...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/298b2f49-8374-4e54-bfd3-639a7de3af7f%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/370a3815-c5c7-4eb7-bd50-cfd689a44c96%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: NoReverseMatch at /polls/1/

2015-10-04 Thread James Schneider
My guess it's that your polls/urls.py file is not being processed/included
properly since none of your URL patterns were even tried.

What does your mysite/urls.py file look like?

-James
On Oct 4, 2015 12:35 PM, "jahan"  wrote:

> Hi James,
>
> This is the error
>
> NoReverseMatch at /polls/1/
>
> Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
> found. 0 pattern(s) tried: []
>
> Request Method: GET Request URL: http://localhost:8000/polls/1/ Django
> Version: 1.8.4 Exception Type: NoReverseMatch Exception Value:
>
> Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
> found. 0 pattern(s) tried: []
>
> Exception Location: 
> /usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py
> in _reverse_with_prefix, line 496 Python Executable: /usr/bin/python Python
> Version: 2.7.3 Python Path:
>
> ['/var/www/django/mysite',
>  '/usr/lib/python2.7',
>  '/usr/lib/python2.7/plat-linux2',
>  '/usr/lib/python2.7/lib-tk',
>  '/usr/lib/python2.7/lib-old',
>  '/usr/lib/python2.7/lib-dynload',
>  '/usr/local/lib/python2.7/dist-packages',
>  '/usr/lib/python2.7/dist-packages',
>  '/usr/lib/python2.7/dist-packages/PIL',
>  '/usr/lib/python2.7/dist-packages/gst-0.10',
>  '/usr/lib/python2.7/dist-packages/gtk-2.0',
>  '/usr/lib/python2.7/dist-packages/ubuntu-sso-client',
>  '/usr/lib/python2.7/dist-packages/ubuntuone-client',
>  '/usr/lib/python2.7/dist-packages/ubuntuone-control-panel',
>  '/usr/lib/python2.7/dist-packages/ubuntuone-couch',
>  '/usr/lib/python2.7/dist-packages/ubuntuone-installer',
>  '/usr/lib/python2.7/dist-packages/ubuntuone-storage-protocol']
>
> Server time: Sun, 4 Oct 2015 19:31:13 +
> Error during template rendering
>
> In template /var/www/django/mysite/polls/templates/polls/detail.html,
> error at line *4*
> Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not
> found. 0 pattern(s) tried: [] 1 {{ question.question_text }} 2 
> 3 {% for choice in question.choice_set.all %} 4 {{ choice.choice_text }} 5 {% endfor
> %} 6  7
>
>
> On Sunday, October 4, 2015 at 9:04:48 PM UTC+2, James Schneider wrote:
>>
>> Can you paste the entire error?
>>
>> Also, read through the error page, it should show you which line is
>> causing the problem.
>>
>> -James
>> On Oct 4, 2015 9:24 AM, "jahan"  wrote:
>>
>>> Hi Django group,
>>>
>>> I'm following the tutorial and get stuck on *part 3, Removing hardcoded
>>> URLs in templates*
>>>
>>> I read through the topics that discuss this, but can't find the issue in
>>> my case.
>>>
>>> my *detail.html* template looks like
>>>
>>> {{ question.question_text }}
>>> 
>>> {% for choice in question.choice_set.all %}
>>> {{ choice.choice_text
>>> }}
>>> {% endfor %}
>>> 
>>>
>>>
>>> in my urls.py for the polls project I have
>>>
>>> urlpatterns = [
>>>  url(r'^$', 'index', name="index"),
>>>  url(r'^(?P\d+)/$', views.detail, name="detail"),
>>>  url(r'^(?P\d+)/results/$', 'results', name="results"),
>>>  url(r'^(?P\d+)/vote/$', 'vote', name="vote"),
>>> ]
>>>
>>> Thanks for any suggestion,
>>> jack
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To post to this group, send email to django...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/298b2f49-8374-4e54-bfd3-639a7de3af7f%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/370a3815-c5c7-4eb7-bd50-cfd689a44c96%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/

Re: NoReverseMatch at /polls/1/

2015-10-04 Thread jahan
This is my mysite/url,py

from django.contrib import admin

urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^polls/', include('polls.urls',namespace = "polls")),
].



On Sunday, October 4, 2015 at 9:43:46 PM UTC+2, James Schneider wrote:
>
> My guess it's that your polls/urls.py file is not being processed/included 
> properly since none of your URL patterns were even tried.
>
> What does your mysite/urls.py file look like?
>
> -James
> On Oct 4, 2015 12:35 PM, "jahan" > wrote:
>
>> Hi James,
>>
>> This is the error
>>
>> NoReverseMatch at /polls/1/ 
>>
>> Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
>> found. 0 pattern(s) tried: []
>>
>> Request Method: GET Request URL: http://localhost:8000/polls/1/ Django 
>> Version: 1.8.4 Exception Type: NoReverseMatch Exception Value: 
>>
>> Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
>> found. 0 pattern(s) tried: []
>>
>> Exception Location: 
>> /usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py 
>> in _reverse_with_prefix, line 496 Python Executable: /usr/bin/python Python 
>> Version: 2.7.3 Python Path: 
>>
>> ['/var/www/django/mysite',
>>  '/usr/lib/python2.7',
>>  '/usr/lib/python2.7/plat-linux2',
>>  '/usr/lib/python2.7/lib-tk',
>>  '/usr/lib/python2.7/lib-old',
>>  '/usr/lib/python2.7/lib-dynload',
>>  '/usr/local/lib/python2.7/dist-packages',
>>  '/usr/lib/python2.7/dist-packages',
>>  '/usr/lib/python2.7/dist-packages/PIL',
>>  '/usr/lib/python2.7/dist-packages/gst-0.10',
>>  '/usr/lib/python2.7/dist-packages/gtk-2.0',
>>  '/usr/lib/python2.7/dist-packages/ubuntu-sso-client',
>>  '/usr/lib/python2.7/dist-packages/ubuntuone-client',
>>  '/usr/lib/python2.7/dist-packages/ubuntuone-control-panel',
>>  '/usr/lib/python2.7/dist-packages/ubuntuone-couch',
>>  '/usr/lib/python2.7/dist-packages/ubuntuone-installer',
>>  '/usr/lib/python2.7/dist-packages/ubuntuone-storage-protocol']
>>
>> Server time: Sun, 4 Oct 2015 19:31:13 + 
>> Error during template rendering 
>>
>> In template /var/www/django/mysite/polls/templates/polls/detail.html, 
>> error at line *4*
>> Reverse for 'detail' with arguments '(1,)' and keyword arguments '{}' not 
>> found. 0 pattern(s) tried: [] 1 {{ question.question_text }} 2  
>> 3 {% for choice in question.choice_set.all %} 4 {{ choice.choice_text }} 5 {% endfor 
>> %} 6  7 
>>
>>
>> On Sunday, October 4, 2015 at 9:04:48 PM UTC+2, James Schneider wrote:
>>>
>>> Can you paste the entire error? 
>>>
>>> Also, read through the error page, it should show you which line is 
>>> causing the problem.
>>>
>>> -James
>>> On Oct 4, 2015 9:24 AM, "jahan"  wrote:
>>>
 Hi Django group,

 I'm following the tutorial and get stuck on *part 3, Removing 
 hardcoded URLs in templates*

 I read through the topics that discuss this, but can't find the issue 
 in my case.

 my *detail.html* template looks like 

 {{ question.question_text }}
 
 {% for choice in question.choice_set.all %}
 {{ choice.choice_text 
 }}
 {% endfor %}
 


 in my urls.py for the polls project I have 

 urlpatterns = [
  url(r'^$', 'index', name="index"),
  url(r'^(?P\d+)/$', views.detail, name="detail"),
  url(r'^(?P\d+)/results/$', 'results', name="results"
 ),
  url(r'^(?P\d+)/vote/$', 'vote', name="vote"),
 ]

 Thanks for any suggestion,
 jack

 -- 
 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...@googlegroups.com.
 To post to this group, send email to django...@googlegroups.com.
 Visit this group at http://groups.google.com/group/django-users.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/django-users/298b2f49-8374-4e54-bfd3-639a7de3af7f%40googlegroups.com
  
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> -- 
>> 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...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/370a3815-c5c7-4eb7-bd50-cfd689a44c96%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

Re: NoReverseMatch at /polls/1/

2015-10-04 Thread James Schneider
> This is my mysite/url,py
>
> from django.contrib import admin
>
> urlpatterns = [
> url(r'^admin/', include(admin.site.urls)),
> url(r'^polls/', include('polls.urls',namespace = "polls")),
> ].
>

Oh, yep, there's the problem. You added a namespace called 'polls' but you
aren't referencing it in your template, so the URL resolver isn't using
your polls/urls.py file for that {% url %} call. You probably forgot to
update the {% url %} tag after the tutorial portion that added the
namespace to the mysite/urls.py file.

You need to update your {% url %} tag to use 'polls:detail' rather than
just 'detail'.

See the last code box on that tutorial page:
https://docs.djangoproject.com/en/1.8/intro/tutorial03/#namespacing-url-names

-James

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciUsnTc4ExDWWGycB5jt%3DBfNpnWxaYNi7tbVWggr%3DDC4qQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: django download

2015-10-04 Thread 술욱
Hello,

AFAIK, there's no "download". The best way I know to install Django is
to use virtualenvs. In your ubuntu laptop do:

$ sudo apt-get install virtualenvwrapper

Logoff and login. Now do:

$ mkvirtualenv myapp

That will switch your prompt to something like (myapp) youruser@yourhost:~$

Now do:

$ pip install django

And that's it.

You can now use django-admin.py starproject, startapp, runserver, etc.

Do some reading on virutalenv (and/or virtualenvwrapper) so you don't get lost.

Regards,
Norberto

2015-10-04 6:25 GMT-03:00 harish harish :
> hi friends i am new to use django in my ubuntu laptop
> i want to download django in my ubuntu laptop
> please send link how to download
>
> --
> 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 post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/3580a25a-2e3f-43c3-a4d0-2368ae20f0ac%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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 post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADut3oAZf3FJ-nmg8RCJCy7CY%2B%3DwkXEB%2B0b6YLcOn7pq2ejwew%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.