django form

2021-11-15 Thread fawemimo olawale
How can relate this in model and view because form is meant for one person 
The BankDetail and BeneficiaryDetail are meant for customer Customer Detail 
title surname first_name other_name phone email_address_1 address_line_1 
mean_of_identification (this is a choicefield) identification_number pfa 
rsa_number will_executors (this is a choicefield) if_others Bank Detail 
(this customer can add as many banks ) bank_name (this is a choicefield) 
account_number_1 branch Beneficiary Detail (this customer can add as many 
Beneficiary Detail ) fullname address_line_2 phone email_address_2 value 

-- 
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/128d27ad-1970-4c6e-8148-529bc7475620n%40googlegroups.com.


Re: Handling url in class based views.

2021-11-15 Thread Aadil Rashid
Thank you very much Pankaj Palmate, I really appreciate it.
I have tried using def get(self, request, *args, **kwargs) but This method
is not been invoked,
Actually the thing is that,
I am calling this ClassBasedView by an anchor tag, which passes URL to this
link and I need to get the information in which is present in the URL,
I am confused, weather the request initiated by an anchor tag is a get
request or not,
Indeed get method does not worked here,

I once again thank you very much
pankaj palmate

On Tue, Nov 16, 2021 at 9:41 AM pankaj palmate 
wrote:

> Also request in def get itself
>
> On Tue, 16 Nov, 2021, 9:40 am pankaj palmate, <
> pankajpalmate61...@gmail.com> wrote:
>
>> def get(self, pk, *args,**kwargs ) :
>> ...body..
>>
>> On Tue, 16 Nov, 2021, 2:57 am Aadil Rashid, 
>> wrote:
>>
>>> Hello my dear Friends, I have a question regarding Class Based Views.
>>>
>>> If we have a url e.g,
>>> path('item//',  views.funView)
>>>
>>> We can handle it in  Function Based Views,
>>> By simply
>>> def funView(request, slug) :
>>>#logic
>>>return render(request, "tempName")
>>>
>>>
>>> We can even pass this slug as a context in this template,
>>>
>>>
>>> My question is how can we achieve this by using class Based Views.
>>>
>>>
>>> Thanks in advance.
>>>
>>> --
>>> 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/CAAYXZx_Sn2BBhPWZXi_zEECN-x7wu9sDQJfYeVH31oHhemptpQ%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/CAPyMU1%2BNbEnuO6nDL_hmo6zqVq6cE7SN%3DciA_JgbyZxwcft0Pw%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/CAAYXZx9-Jx3Cm7TzU-weg8Q1gMh203L3ssGThSZh4Uy%3DQM5RLg%40mail.gmail.com.


Re: Handling url in class based views.

2021-11-15 Thread pankaj palmate
Also request in def get itself

On Tue, 16 Nov, 2021, 9:40 am pankaj palmate, 
wrote:

> def get(self, pk, *args,**kwargs ) :
> ...body..
>
> On Tue, 16 Nov, 2021, 2:57 am Aadil Rashid, 
> wrote:
>
>> Hello my dear Friends, I have a question regarding Class Based Views.
>>
>> If we have a url e.g,
>> path('item//',  views.funView)
>>
>> We can handle it in  Function Based Views,
>> By simply
>> def funView(request, slug) :
>>#logic
>>return render(request, "tempName")
>>
>>
>> We can even pass this slug as a context in this template,
>>
>>
>> My question is how can we achieve this by using class Based Views.
>>
>>
>> Thanks in advance.
>>
>> --
>> 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/CAAYXZx_Sn2BBhPWZXi_zEECN-x7wu9sDQJfYeVH31oHhemptpQ%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/CAPyMU1%2BNbEnuO6nDL_hmo6zqVq6cE7SN%3DciA_JgbyZxwcft0Pw%40mail.gmail.com.


Re: Handling url in class based views.

2021-11-15 Thread pankaj palmate
def get(self, pk, *args,**kwargs ) :
...body..

On Tue, 16 Nov, 2021, 2:57 am Aadil Rashid,  wrote:

> Hello my dear Friends, I have a question regarding Class Based Views.
>
> If we have a url e.g,
> path('item//',  views.funView)
>
> We can handle it in  Function Based Views,
> By simply
> def funView(request, slug) :
>#logic
>return render(request, "tempName")
>
>
> We can even pass this slug as a context in this template,
>
>
> My question is how can we achieve this by using class Based Views.
>
>
> Thanks in advance.
>
> --
> 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/CAAYXZx_Sn2BBhPWZXi_zEECN-x7wu9sDQJfYeVH31oHhemptpQ%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/CAPyMU1%2BV-e%3Dw-ZRN31d%3D_BtgPWujn%3DK7ExwJ6fOug8oLP7vPNQ%40mail.gmail.com.


Handling url in class based views.

2021-11-15 Thread Aadil Rashid
Hello my dear Friends, I have a question regarding Class Based Views.

If we have a url e.g,
path('item//',  views.funView)

We can handle it in  Function Based Views,
By simply
def funView(request, slug) :
   #logic
   return render(request, "tempName")


We can even pass this slug as a context in this template,


My question is how can we achieve this by using class Based Views.


Thanks in advance.

-- 
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/CAAYXZx_Sn2BBhPWZXi_zEECN-x7wu9sDQJfYeVH31oHhemptpQ%40mail.gmail.com.


Re: How to approach

2021-11-15 Thread Zaid Ullah
Sir I am also beginner in Django and i also want to create login, sign in 
file but i don't know how to do it...if you did successfully please send me 
the code i will learn from it and make one another by self... 
Thanks

On Monday, November 15, 2021 at 8:47:50 PM UTC+5 Trippy Samurai wrote:

> Hi elgato,
> Thanks for your reply brother
>
> I need to change the function based views into class based and generic 
> views, previously i have implemented different html pages for all the views 
> like completed,opened,accepted and closed tickets, with class based views i 
> need to have everything in one single html file ri8 if i am not wrong it 
> follows some convention like modelname_list.html on top of that i have 
> multi user signin developer and manager.i am stuck with this how to 
> implement and u can see the html file below which displays the open tickets 
> for developer and there are 8 different html pages for developer and 
> manager for 4 status of ticket as i mentioned at the starting of this 
> message they all should be in one html page if i use class based generic 
> view(list view) i am stuck plz help
>
>
> [image: Screenshot 2021-11-15 at 9.09.41 PM.png]
>
>
> [image: Screenshot 2021-11-15 at 8.57.33 PM.png]
> On Monday, 15 November 2021 at 19:19:42 UTC+5:30 elgato...@gmail.com 
> wrote:
>
>> Hi Trippy.
>>
>> Be more specific about what part is causing you troubles
>>
>> El jue, 4 de nov. de 2021 a la(s) 10:59, Trippy Samurai (
>> someshkan...@gmail.com) escribió:
>>
>>> Hi there,
>>> I am new to django and have a problem statement am not quite sure how to 
>>> approach this,Please help me,
>>>
>>>
>>> Phase 1 Objectives:
>>>
>>>1. Use the existing project setup you have already created  You may 
>>>completely reset Django models/database/codebase if needed but make sure 
>>>you keep celery/redist/celery flower docker setup 
>>>2. Extend default Django user model (very imp. you should 
>>>research/read on this if not sure)
>>>a. user with same email address can only signup as either manager or 
>>>as developer
>>>b. Add more models as needed (i.e. Ticket etc)
>>>3. Create different Profile models for PM and Developer (hint: one 
>>>to one relation to User)  
>>>4. Create Two signup page where user can create account as project 
>>>manager and as  developer 
>>>5. Create two different login pages for PMs and Developers 
>>>6. Each user type is greeted with basic welcome message i.e. 
>>>dashboard
>>>
>>>
>>> PM Features :
>>>
>>>1. Can create new ticket with title and info/description field 
>>>2. Can mark ticket as closed once it is marked completed by developer
>>>
>>>
>>> Developer Features:
>>>
>>>1. Can accept one or more Ticket if it is open
>>>2. After accepting a ticket it can not be accepted by another 
>>>developer. Only one user can accept one ticket at a time
>>>3. Developer can then mark accepted ticket as completed 
>>>
>>>
>>> Phase 2 Objectives: 
>>>
>>>1.  PM Dashboard :
>>>   1. See existing Open tickets
>>>   2. See Accepted tickets 
>>>   3. See Completed tickets
>>>   4. See Closed tickets 
>>>2. Developer Dashboard 
>>>   1. See Open tickets 
>>>   2. See Accepted tickets 
>>>   3. See Completed tickets 
>>>   4. See Closed tickets
>>>
>>>
>>>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...@googlegroups.com.
>>>
>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/eb344d25-1f60-4cae-8f2f-0e6abb2417abn%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/68a7cf65-79c1-4bf5-b432-8684d926c8adn%40googlegroups.com.


Re: How to approach

2021-11-15 Thread Kasper Laudrup

On 15/11/2021 20.13, Trippy Samurai wrote:
The conclusion is that i have 8 html pages  4 for developer and 4 for 
manager which have slight changes in the table headers i.e 
Opened,accepted.completed,closed, aftter using listview all of them come 
into one html file because of one model i need them to display 
accordingly with respect to each user logged in . How do i acheive this




http://www.learningaboutelectronics.com/Articles/How-to-add-an-if-statement-to-a-template-in-Django.php

--
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/1034d215-0ebb-e52a-65f9-0bbd5ff8887b%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: How to approach

2021-11-15 Thread Trippy Samurai
The conclusion is that i have 8 html pages  4 for developer and 4 for 
manager which have slight changes in the table headers i.e 
Opened,accepted.completed,closed, aftter using listview all of them come 
into one html file because of one model i need them to display accordingly 
with respect to each user logged in . How do i acheive this

On Monday, 15 November 2021 at 21:17:50 UTC+5:30 Trippy Samurai wrote:

> Hi elgato,
> Thanks for your reply brother
>
> I need to change the function based views into class based and generic 
> views, previously i have implemented different html pages for all the views 
> like completed,opened,accepted and closed tickets, with class based views i 
> need to have everything in one single html file ri8 if i am not wrong it 
> follows some convention like modelname_list.html on top of that i have 
> multi user signin developer and manager.i am stuck with this how to 
> implement and u can see the html file below which displays the open tickets 
> for developer and there are 8 different html pages for developer and 
> manager for 4 status of ticket as i mentioned at the starting of this 
> message they all should be in one html page if i use class based generic 
> view(list view) i am stuck plz help
>
>
> [image: Screenshot 2021-11-15 at 9.09.41 PM.png]
>
>
> [image: Screenshot 2021-11-15 at 8.57.33 PM.png]
> On Monday, 15 November 2021 at 19:19:42 UTC+5:30 elgato...@gmail.com 
> wrote:
>
>> Hi Trippy.
>>
>> Be more specific about what part is causing you troubles
>>
>> El jue, 4 de nov. de 2021 a la(s) 10:59, Trippy Samurai (
>> someshkan...@gmail.com) escribió:
>>
>>> Hi there,
>>> I am new to django and have a problem statement am not quite sure how to 
>>> approach this,Please help me,
>>>
>>>
>>> Phase 1 Objectives:
>>>
>>>1. Use the existing project setup you have already created  You may 
>>>completely reset Django models/database/codebase if needed but make sure 
>>>you keep celery/redist/celery flower docker setup 
>>>2. Extend default Django user model (very imp. you should 
>>>research/read on this if not sure)
>>>a. user with same email address can only signup as either manager or 
>>>as developer
>>>b. Add more models as needed (i.e. Ticket etc)
>>>3. Create different Profile models for PM and Developer (hint: one 
>>>to one relation to User)  
>>>4. Create Two signup page where user can create account as project 
>>>manager and as  developer 
>>>5. Create two different login pages for PMs and Developers 
>>>6. Each user type is greeted with basic welcome message i.e. 
>>>dashboard
>>>
>>>
>>> PM Features :
>>>
>>>1. Can create new ticket with title and info/description field 
>>>2. Can mark ticket as closed once it is marked completed by developer
>>>
>>>
>>> Developer Features:
>>>
>>>1. Can accept one or more Ticket if it is open
>>>2. After accepting a ticket it can not be accepted by another 
>>>developer. Only one user can accept one ticket at a time
>>>3. Developer can then mark accepted ticket as completed 
>>>
>>>
>>> Phase 2 Objectives: 
>>>
>>>1.  PM Dashboard :
>>>   1. See existing Open tickets
>>>   2. See Accepted tickets 
>>>   3. See Completed tickets
>>>   4. See Closed tickets 
>>>2. Developer Dashboard 
>>>   1. See Open tickets 
>>>   2. See Accepted tickets 
>>>   3. See Completed tickets 
>>>   4. See Closed tickets
>>>
>>>
>>>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...@googlegroups.com.
>>>
>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/eb344d25-1f60-4cae-8f2f-0e6abb2417abn%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/da911740-17ea-4e4c-bd73-94b7bc3e8b50n%40googlegroups.com.


Re: Celery & Docker Setup

2021-11-15 Thread Gabo LaTo
Try following the instructions here:
https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html

And Let us know when you are stucked and where did you get stucked.
I recommend sharing your code with a github link instead of writing as part
of the email. It's easier for us to read and we can even fork your code an
propose a solution if with a Pull Request.

El mié, 10 de nov. de 2021 a la(s) 06:12, Trippy Samurai (
someshkandukuri...@gmail.com) escribió:

> Hello,
> I have around 18 views in my views.py file how do i integrate with
> celery,Please help me if anyone's aware
>
> *Views*.*py:*
>
> from django import forms
> from django.contrib import auth
> from django.http import request
> from django.http.response import HttpResponse, HttpResponseRedirect
> from django.shortcuts import render,redirect
> from django.urls import reverse
> from django.contrib.auth import login,logout,authenticate
> from django.contrib.auth.decorators import login_required
> from django.contrib import messages
> from django.views.generic import CreateView
> from .forms import
> DeveloperSignupForm,ProjectManagerSignupForm,TicketCreateForm
> from django.contrib.auth.forms import AuthenticationForm
> from .models import Developer, User,Ticket
>
> # Create your views here.
> def index(request):
> return render(request,'app/login_register_page.html')
>
> class developer_register(CreateView):
> model = User
> form_class = DeveloperSignupForm
> template_name = 'app/dev_register.html'
>
> def form_valid(self,form):
> user = form.save()
> return HttpResponse('Thank you for Registering,Please Login')
>
>
> class manager_register(CreateView):
> model = User
> form_class = ProjectManagerSignupForm
> template_name = 'app/pm_register.html'
>
> def form_valid(self,form):
> user = form.save()
> return HttpResponse('Thank you for Registering,Please Login')
>
>
>
> def manager_login(request):
> current = User.objects.filter(is_manager = True)
> if request.method == 'POST':
> pm_form = AuthenticationForm(data=request.POST)
>
> if pm_form.is_valid():
> username = pm_form.cleaned_data.get('username')
> password = pm_form.cleaned_data.get('password')
> user = authenticate(username=username,password=password)
>
> if user is not None:
> if user in current:
> login(request,user)
> return redirect(reverse('pm_dashboard'))
> else:
> messages.error(request,"Invalid Username or Password")
>
> else:
> messages.error(request,"Invalid Username or Password")
> return render(request, 'app/pm_login.html',context={
> 'form':AuthenticationForm(),
> })
>
> @login_required
> def pm_dashboard(request):
> return render(request,'app/pm_dash.html')
>
>
>
>
> def developer_login(request):
> current = User.objects.filter(is_developer = True)
> if request.method == 'POST':
> dev_form = AuthenticationForm(data=request.POST)
>
> if dev_form.is_valid():
> username = dev_form.cleaned_data.get('username')
> password = dev_form.cleaned_data.get('password')
> user = authenticate(username=username,password=password)
>
> if user is not None:
> if user in current:
> login(request,user)
> return redirect(reverse('dev_dashboard'))
>
> else:
> messages.error(request,"Invalid Username or Password")
>
> else:
> messages.error(request,"Invalid Username or Password")
> return render(request, 'app/dev_login.html',context={
> 'form':AuthenticationForm(),
> })
> @login_required
> def dev_dashboard(request):
> return render(request,'app/dev_dash.html')
>
> @login_required
> def ticket_create_view(request):
>
> if request.POST:
> form = TicketCreateForm(request.POST)
>
> if form.is_valid():
>
> obj = form.save()
> obj.created_by = request.user
> obj.status = "Opened"
> obj.save()
>
> return HttpResponseRedirect(reverse('pm_open_tickets'))
>
> else:
> form = TicketCreateForm()
>
> return render(request,
> 'app/create_ticket.html',
> {'form': form,})
>
> @login_required
> def open_tickets_view(request):
> tickets_open = Ticket.objects.filter(status = 'Opened')
> return render(request,'app/open_tickets.html',{"tickets": tickets_open})
> @login_required
> def accept_tickets_view(request,pk):
> ticket = Ticket.objects.get(id=pk)
> if ticket.status == 'Opened':
> ticket.status = 'Accepted'
> ticket.accepted_by = request.user
> ticket.save()
> return redirect(reverse('open_tickets'))
>
> @login_required
> def dev_accepted_ticket(request):
> ticket_complete = Ticket.objects.filter(status = 'Accepted',accepted_by =
> request.user)
> return render(request,'app/dev_accepted_ticket.html',{"tickets":
> ticket_complete})
>
>
> @login_required
> def mark_complete_tickets_view(request,pk):
> ticket = Ticket.objects.get(id=pk)
> if ticket.status == 'Accepted' and ticket.accepted_by == request.user:
> ticket.status = 'Completed'
> ticket.save()
> return redirect(reverse('accepted_tickets_view'))
>
>
> @login_required
> def dev_completed_ticket(request):
> tickets_completed = Ticket.objects.filter(status = 'Completed',accepted_by
> = request.user)
> return
> 

Re: How to approach

2021-11-15 Thread Gabo LaTo
Hi Trippy.

Be more specific about what part is causing you troubles

El jue, 4 de nov. de 2021 a la(s) 10:59, Trippy Samurai (
someshkandukuri...@gmail.com) escribió:

> Hi there,
> I am new to django and have a problem statement am not quite sure how to
> approach this,Please help me,
>
>
> Phase 1 Objectives:
>
>1. Use the existing project setup you have already created  You may
>completely reset Django models/database/codebase if needed but make sure
>you keep celery/redist/celery flower docker setup
>2. Extend default Django user model (very imp. you should
>research/read on this if not sure)
>a. user with same email address can only signup as either manager or
>as developer
>b. Add more models as needed (i.e. Ticket etc)
>3. Create different Profile models for PM and Developer (hint: one to
>one relation to User)
>4. Create Two signup page where user can create account as project
>manager and as  developer
>5. Create two different login pages for PMs and Developers
>6. Each user type is greeted with basic welcome message i.e. dashboard
>
>
> PM Features :
>
>1. Can create new ticket with title and info/description field
>2. Can mark ticket as closed once it is marked completed by developer
>
>
> Developer Features:
>
>1. Can accept one or more Ticket if it is open
>2. After accepting a ticket it can not be accepted by another
>developer. Only one user can accept one ticket at a time
>3. Developer can then mark accepted ticket as completed
>
>
> Phase 2 Objectives:
>
>1.  PM Dashboard :
>   1. See existing Open tickets
>   2. See Accepted tickets
>   3. See Completed tickets
>   4. See Closed tickets
>2. Developer Dashboard
>   1. See Open tickets
>   2. See Accepted tickets
>   3. See Completed tickets
>   4. See Closed tickets
>
>
>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/eb344d25-1f60-4cae-8f2f-0e6abb2417abn%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/CAF6hzDM4Z-nV6-5JriMHihEX1nAf-MTBK8i9XdUczgF%3DRTfAQw%40mail.gmail.com.


Join Two fields during Import

2021-11-15 Thread Yogesh Pawar
Hello Team, 

I am importing a CSV file from the admin panel, during import I Want to 
Create a Unique ID by combing other three to four fields and storing it 
into the id column  how to combine columns during import of CSV or excel 


Thanks and Regards 

-- 
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/25165bc9-3143-4d83-83d4-16002943caefn%40googlegroups.com.