Prefetching returning empty values for some object

2019-12-29 Thread Mohit Solanki
Assume these two models.

class Folder(model):
name = models.CharField(max_length=8)
files = models.ManyToManyField('File')
class File:
   path = models.CharField(max_length=255)


First I was fetching the folders and while looping over them fetching the
files with a distinct path

folders = Folder.objects.all()
for folder in folders:
files_with_distinct_path = folder.files.distinct('path').order_by('path')


but this suffers from the N+1 problem, So I tried prefetching the files
while fetching all the folders.

from django.db.models import Prefetch

folders = Folder.objects.prefetch_related(
Prefetch(
'files',
queryset=File.objects.distinct('path').order_by('path'),
to_attr='distinct_files'
))


but it turns out now there objects with empty `distinct_files` which is not
the correct result, these objects have files but after prefetching, the
result is empty only for few objects.

-- 
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/CAKB6Ln8ECMFriry%3DMa3RwJobXNb7Od0wdwM2JvrETaOiOQAOhw%40mail.gmail.com.


Re: How to get Latitude and Longitude of a user

2019-12-29 Thread Dominick Del Ponte
Don't know if it is ideal, but, assuming you have a form on the page you
could use the geolocation API
 and put
the values in hidden form fields to send to your DB.


Dominick
delponte.d...@gmail.com



On Sat, Dec 28, 2019 at 6:02 AM Yash Garg  wrote:

> I want to get Latitude and Longitude of a user to store in my data model
> fields-
> latitude= models.FloatField(default=0.0)
> longitude   = models.FloatField(default=0.0)
>
> How can i do this without using Google API.
>
> --
> 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/26e603af-05a5-47f4-82d7-35f8bd1f3f6c%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/CALLhV5QTTV6DYiUyAtC2SG4Rrv6jqAubpNbskg0Ody0k6_20wA%40mail.gmail.com.


OpenID Django

2019-12-29 Thread Malik Brahimi


I'm trying to use SSO in my application provided by Ping Identity and from 
what I could tell they support both OAuth and ODIC if specified in the 
scope. While I haven't found a specific client library for Ping Indentity, 
I did find packages like python-social-auth and django-allauth which 
include an OpenID connect integration. I tried both of them but 
unfortunately, I didn't understand the fields required to set it up.

[image: enter image description here] 

According to the OAuth and OpenID specifications, I was looking for fields 
like client id, client secret, authorization and token endpoints, redirect 
URI, and optional claim-to-user attribute mappings. But I have no idea what 
handle, issued, lifetime, association type are. Can anyone explain how to 
get a Ping Identity SSO fully integrated with Django such that I can still 
use permissions on my own local API with the authenticated and authorized 
users?

-- 
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/dcde94e2-ddc1-4b16-9237-af4496db0406%40googlegroups.com.


Re: Exception happened during processing of request from ...

2019-12-29 Thread Alfredo Silveira
This is happen to me with django 3 and python 3.7, I just need to update 
python to version 3.8 and works well

Em quinta-feira, 31 de janeiro de 2019 13:52:38 UTC-2, Jon bae escreveu:
>
> Hello,
> I'm running here *django 2.1.5* with *python 3.7.2* (installed with 
> homebrew) on a macOS (mojave).
>
> On a regular basis I get this error message:
>
> Exception happened during processing of request from ('127.0.0.1', 54882)
> Traceback (most recent call last):
>   File 
> "/usr/local/Cellar/python/3.7.2_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/socketserver.py"
> , line 650, in process_request_thread
> self.finish_request(request, client_address)
>   File 
> "/usr/local/Cellar/python/3.7.2_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/socketserver.py"
> , line 360, in finish_request
> self.RequestHandlerClass(request, client_address, self)
>   File 
> "/usr/local/Cellar/python/3.7.2_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/socketserver.py"
> , line 720, in __init__
> self.handle()
>   File "/Users/User
> /DEV/gogs/TV-Webpage/venv/lib/python3.7/site-packages/django/core/servers/basehttp.py"
> , line 171, in handle
> self.handle_one_request()
>   File 
> "/Users/User/DEV/gogs/TV-Webpage/venv/lib/python3.7/site-packages/django/core/servers/basehttp.py"
> , line 179, in handle_one_request
> self.raw_requestline = self.rfile.readline(65537)
>   File 
> "/usr/local/Cellar/python/3.7.2_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/socket.py"
> , line 589, in readinto
> return self._sock.recv_into(b)
> ConnectionResetError: [Errno 54] Connection reset by peer
> 
>
> It comes for example when I open the admin page, but not always.
>
>
> Have you any idea how I can fix that?
>
> Have a nice day!
>
> Jonathan
>

-- 
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/e6231849-8a0a-4e3b-bc80-1fbec54fed59%40googlegroups.com.


link multiple files to model

2019-12-29 Thread Bart Jonkers
Hi,

I have a question about one-to-many relations in models
What is best to use? ForeignKey of many to ManyToManyField?

I want to attach files to a model. 

The *ForeignKey* is easy to use. 
class Feed(models.Model):
user=models.ForeignKey(User, on_delete=models.CASCADE, 
related_name='feeds')
text=models.TextField(blank=False, max_length=500)

class FeedFile(models.Model):
file = models.FileField(upload_to="files/%Y/%m/%d")
feed = models.ForeignKey(Feed, on_delete=models.CASCADE, 
related_name='files')

But retrieving all objects (for a listview) with all files included the 
object is challenging. I
 tried subqueries, prefetch_related...
How can I do this?
AllFeeds = Feed.objects.all() 

the *manytomany-solution:*
class Feed(models.Model):
user=models.ForeignKey(User, on_delete=models.CASCADE, 
related_name='feeds')
text=models.TextField(blank=False, max_length=500)
files=models.ManyToManyField(FeedFile)

class FeedFile(models.Model):
file = models.FileField(upload_to="files/%Y/%m/%d")
Is not so intuitive for the user, but I can get the correct queryset.

Any advise on good practise?

Bart



-- 
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/e9ff73b1-bf2f-462a-98f3-da46793c54da%40googlegroups.com.


Re: access control module

2019-12-29 Thread Integr@te System
Hi,

Think of seperating on permissions, each of them query out specific details
in views.py.

Hope it helpful.

On Mon, Dec 30, 2019, 00:52 oliseh obiajuru 
wrote:

> i am looking to create a custom access control for the front end of my
> django web site, where by if you are categories as a certain user (lets say
> editor) you should have a different navigation menu items from those of a
> (writer). please i need help.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e1ac3d39-70b6-45e0-bf3c-8ac6c3268468%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/CAP5HUWr22KeJG%3DpToYDtxzCLxfrkfkk1fXcLF9_SyuAEJ%2BwM3A%40mail.gmail.com.


Re: I need guide in Django web development

2019-12-29 Thread Gerardo Palazuelos Guerrero
Hi,
I highly suggest you Williams’s books.
https://wsvincent.com/

The green one (beginners) is my best friend.

---
Gerardo Palazuelos
Enviado desde mi iPhone


> El 29 dic 2019, a la(s) 11:11, suneel singh  escribió:
> 
> How to start Django web development , I am biggner in Django development so 
> how to start and what is good reference for 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 view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/ccc5e535-fdbf-4e45-9b7b-da4d500b2e92%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/59B5D848-BA0C-4DE3-B4FC-9164CC50F77C%40gmail.com.


Re: I need guide in Django web development

2019-12-29 Thread Frank Cipolone
The Django documentation has a great tutorial for beginners. This project
will teach you the basics.

https://docs.djangoproject.com/en/3.0/intro/tutorial01/

After completing that tutorial try this one:

https://realpython.com/courses/django-portfolio-project/


Then once you feel confident look up some beginner project ideas like a
real estate web site or a small blog.


On Sun, Dec 29, 2019 at 1:12 PM suneel singh  wrote:

> How to start Django web development , I am biggner in Django development
> so how to start and what is good reference for 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/ccc5e535-fdbf-4e45-9b7b-da4d500b2e92%40googlegroups.com
> .
>
-- 
Best Regards,
Frank Cipolone

(856) 993-4819
fcipol...@gmail.com

https://www.redsnip8.host

-- 
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/CAMxF4bymN5pjLsScPhCA0Wdi5TPih%3D0LEBW6p92uyBSMPfDcCw%40mail.gmail.com.


I need guide in Django web development

2019-12-29 Thread suneel singh
How to start Django web development , I am biggner in Django development so how 
to start and what is good reference for 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ccc5e535-fdbf-4e45-9b7b-da4d500b2e92%40googlegroups.com.


access control module

2019-12-29 Thread oliseh obiajuru
i am looking to create a custom access control for the front end of my 
django web site, where by if you are categories as a certain user (lets say 
editor) you should have a different navigation menu items from those of a 
(writer). please i need help.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e1ac3d39-70b6-45e0-bf3c-8ac6c3268468%40googlegroups.com.


How to ensure genuine emails despite valid email format?

2019-12-29 Thread Roshan Shah
There is a problem when a person enters valid email format but it is either

a) An invalid email which bounces
b) A valid email but using one of disposable email which means it is a fake
profile
c) Emails from domains that are marked as spam
d) Emails from IP addresses that are marked as spam
How do we ensure that before we accept emails, both the above cases are put
in pending status with appropriate message and reason code to put them in
pending?

-- 
-- 

Roshan Shah / Sr. IT Consultant
techieros...@gmail.com / (519) 496-8860

This e-mail message may contain confidential or legally privileged
information and is intended only for the use of the intended recipient(s).
Any unauthorized disclosure, dissemination, distribution, copying or the
taking of any action in reliance on the information herein is prohibited.
E-mails are not secure and cannot be guaranteed to be error free as they
can be intercepted, amended, or contain viruses. Anyone who communicates
with me by e-mail is deemed to have accepted these risks.

-- 
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/CALX19NipTrrd8sgXcrDO07nHBj-A9FtobGgdmfy4r%3Duhbp7g1A%40mail.gmail.com.


Re: Best config and extension for visual studio code

2019-12-29 Thread Integr@te System
Hi The best men,

Go to the best ide you fit, look for the packages you like. Choose the best
time with the best solution for the best customer. Eventually the most
value you get.

Not all in one. Not best all time.

On Sat, Dec 28, 2019, 23:32 Mahmoud Abbas  wrote:

> Hello
> U just need install packages that u want
>
> On Sat, Dec 28, 2019, 19:28 Alaydyn Gholechragh  wrote:
>
>> Hi
>> I want to use visual studio code for programming python and Django and
>> react for this purpose i want to know what is best config for vscode :
>> extension,themes,settings,fonts,linter, etc
>>
>> Thanks for your help
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/5490e89a-06aa-46c3-b495-7f54be63e6f5%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/CAEy2Vka4PgSvsSVha7zLNpuO-uau9-e9hA5L6-f3xnE9AOqSLQ%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/CAP5HUWrTB5HPXxMPpbMOutHwY45BK2vQZy%2BEkmS7x_u2hT_84A%40mail.gmail.com.


How to capture video by using ultrasonic sensor in raspberry pi 3

2019-12-29 Thread Shashi Roshan
Plzz hlp me

On Sun, 29 Dec 2019, 21:40 Roshan Shah,  wrote:

> Anyone has any clue on this?
>
> On Fri, Dec 27, 2019 at 3:11 PM Roshan Shah 
> wrote:
>
>> Hi there,
>>
>> I have a django site hosted on heroku. I want to restrict production site
>> and staging sites running gunicorn to outside general public.
>>
>> Do we have anything like .htaccess password protection in gunicorn? or Do
>> I have to setup login / pass / admin area?
>>
>> --
>>
>> Roshan Shah
>>
>> This e-mail message may contain confidential or legally privileged
>> information and is intended only for the use of the intended recipient(s).
>> Any unauthorized disclosure, dissemination, distribution, copying or the
>> taking of any action in reliance on the information herein is prohibited.
>> E-mails are not secure and cannot be guaranteed to be error free as they
>> can be intercepted, amended, or contain viruses. Anyone who communicates
>> with me by e-mail is deemed to have accepted these risks.
>>
>
>
> --
> --
>
> Roshan Shah / Sr. IT Consultant
> techieros...@gmail.com / (519) 496-8860
>
> This e-mail message may contain confidential or legally privileged
> information and is intended only for the use of the intended recipient(s).
> Any unauthorized disclosure, dissemination, distribution, copying or the
> taking of any action in reliance on the information herein is prohibited.
> E-mails are not secure and cannot be guaranteed to be error free as they
> can be intercepted, amended, or contain viruses. Anyone who communicates
> with me by e-mail is deemed to have accepted these risks.
>
> --
> 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/CALX19Nh7-eSj-K9zJDd42UMfd8ZQvYiEYb0Rk4%3DCDcfaogZe6Q%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/CAJtCAdHiXaZsTp%2BWxxpJQBr1KeV6cS8dwcW5BWGSuvS3e9dwaA%40mail.gmail.com.


Re: Password protection of url in gunicorn like .htaccess

2019-12-29 Thread Roshan Shah
Anyone has any clue on this?

On Fri, Dec 27, 2019 at 3:11 PM Roshan Shah  wrote:

> Hi there,
>
> I have a django site hosted on heroku. I want to restrict production site
> and staging sites running gunicorn to outside general public.
>
> Do we have anything like .htaccess password protection in gunicorn? or Do
> I have to setup login / pass / admin area?
>
> --
>
> Roshan Shah
>
> This e-mail message may contain confidential or legally privileged
> information and is intended only for the use of the intended recipient(s).
> Any unauthorized disclosure, dissemination, distribution, copying or the
> taking of any action in reliance on the information herein is prohibited.
> E-mails are not secure and cannot be guaranteed to be error free as they
> can be intercepted, amended, or contain viruses. Anyone who communicates
> with me by e-mail is deemed to have accepted these risks.
>


-- 
-- 

Roshan Shah / Sr. IT Consultant
techieros...@gmail.com / (519) 496-8860

This e-mail message may contain confidential or legally privileged
information and is intended only for the use of the intended recipient(s).
Any unauthorized disclosure, dissemination, distribution, copying or the
taking of any action in reliance on the information herein is prohibited.
E-mails are not secure and cannot be guaranteed to be error free as they
can be intercepted, amended, or contain viruses. Anyone who communicates
with me by e-mail is deemed to have accepted these risks.

-- 
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/CALX19Nh7-eSj-K9zJDd42UMfd8ZQvYiEYb0Rk4%3DCDcfaogZe6Q%40mail.gmail.com.


Re: How to read Objects from ManyToMany Relation class in django

2019-12-29 Thread Integr@te System
Hi,

Check url.py with typo error at closed parenthesic.

On Sun, Dec 29, 2019, 20:35 manas srivastava 
wrote:

>
>
>
> I have made a class called friend where i want to connect users as
> followers. Here From this class i am unable to read the users those are
> following another user. For Eg if 'a' user fllows 'b' user. Then i want to
> get the names of user that followed b from the user id of b and display
> them as followers of a. This class is also not storing the userid of the
> following user and followed user. I am new to many to many relation field.
> Kindly help.
>
> Code in Models.py
>
> class Friend(models.Model):
>
> users = models.ManyToManyField(User)
>
> current_user = models.ForeignKey(User, related_name='follower', 
> null=True,on_delete=models.CASCADE)
>
> @classmethod
>
> def make_friend(cls, current_user, new_friend):
>
> friend, created = cls.objects.get_or_create(
>
> current_user = current_user
>
> )
>
> friend.users.add(new_friend)
>
> Its function in views.py is
>
> def change_friends(request, operation, pk):
>
> friend = User.objects.get(pk=pk)
>
> ifhttps://groups.google.com/d/msgid/django-users/CAP5HUWo%3D6Ca5Zc_QQ1snbXx0CyP6VaR2MdBnQNLgcT8hqmXMEQ%40mail.gmail.com.


Re: Creating Django models dynamically

2019-12-29 Thread Integr@te System
Hi,

Look at Django CMS features as it is in your purpose.


On Sun, Dec 29, 2019, 20:35 Meet Vasani  wrote:

> Is there any way to create model for the database using form input from
> the end user ?
>
> Scenario: There is authority for the particular company. Authority wants
> to create HTML form schema according to company which he's affiliated with.
> There are many Authorities with diffrent companies they're affiliated with.
>
> Any solution is highly Appreciated.
>
> 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/7b403af4-9ab4-412b-92e9-0a91e239ed0d%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/CAP5HUWpUwFP-j7gJTMf0kL28fmbVyG8H4N63j%2BhFv3x%2B7w31dA%40mail.gmail.com.


Re: angular setup for django (routes not working)

2019-12-29 Thread nitish kumar
we have a web app which is hosted in apache mod_wsgi.

I am trying to update some of the app functionality/UI with angular 8.

everything works of but angular routes are not working , which is important 
for single-page app




On Friday, 27 December 2019 20:50:42 UTC+5:30, lemme smash wrote:
>
> you doing something strange.
> usually, when you want to setup angluar with django, you just using `ng 
> serve` to handle all the interface, and just use django for data and api. 
> it's not a good idea to render angular app with django
>
> On Thursday, December 26, 2019 at 4:05:14 PM UTC+3, nitish kumar wrote:
>>
>> Hi 
>>
>>
>> I am trying to integrate angular8 with Django (2.2.4).
>>
>>
>> *Django side*:
>>
>> URL and view will load angular 'index.html'
>>
>> *angular:*
>>
>> some router-links.
>> based on URL pattern page is getting loaded.
>>
>>
>> *problem statement:*
>>
>> *if host only angular code using 'ng serve' router-link only load's 
>> particular component instead of loading all links in the index.html file*
>> *but when I host in Django router-link is loading the entire page again 
>> (i can see this in developers tools network tab)*
>>
>> *can some please help..*
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/37f1e12f-c6fd-4f83-bb3e-086e05e7a801%40googlegroups.com.


Creating Django models dynamically

2019-12-29 Thread Meet Vasani
Is there any way to create model for the database using form input from the 
end user ?

Scenario: There is authority for the particular company. Authority wants to 
create HTML form schema according to company which he's affiliated with. 
There are many Authorities with diffrent companies they're affiliated with.

Any solution is highly Appreciated.

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/7b403af4-9ab4-412b-92e9-0a91e239ed0d%40googlegroups.com.