Re: Advice please.

2020-08-02 Thread Chucky Mada Madamombe
Hi,

You have 2 options:

1. You can use choices
2. You can store data in a model, and then link with a foreign key.

First option is suitable for that data which wont change regularly e.g
gender..For data that changes or need to be updated regularly,  then use
second option.

On Mon, 03 Aug 2020, 02:21 Hector Berrones,  wrote:

> Hi Bros,
>
> I have very little experience using django and I would like to know how
> would be the most conveniente way  to store and manage the common data in a
> django proyect that would have several  applications  when I say common
> data I mean information about tables cities, Countries, Catalog Sections I
> mean information that usera can use select from a Select Field in for
> example.
>
> Thanks in advance for reading 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/CAFFaoU%2BvDpH%3DUxLs-uVQfbskMTuv-NXhwMvQ9%2Biua65B75MnAw%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/CAJaKOscj-%3D9t0dd2myXJ%3D-_MCw6tZrO8npYO2W483NWWLK36og%40mail.gmail.com.


Re: Advice please.

2020-08-02 Thread Hector Berrones
Thank you Rayan.

On Sun, Aug 2, 2020, 8:15 PM 'Ryan Nowakowski' via Django users <
django-users@googlegroups.com> wrote:

>
>
> On August 2, 2020 7:21:04 PM CDT, Hector Berrones 
> wrote:
> >I have very little experience using django and I would like to know how
> >would be the most conveniente way  to store and manage the common data
> >in a
> >django proyect that would have several  applications  when I say common
> >data I mean information about tables cities, Countries, Catalog
> >Sections I
> >mean information that usera can use select from a Select Field in for
> >example.
> >
>
> For your model, if the data is relatively static, use a CharField with
> choices. If the data is likely to change often, use a model for each kind
> of data and link them together with ForeignKey.
>
> Then in your ModelForm, either the CharField with choices or the
> ForeignKey will be shown as a ChoiceField which renders as a select input
> in your template.
>
> --
> 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/FE1AAC21-E0DA-49F2-AFAF-36142DFC83B5%40fattuba.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/CAFFaoUKVknzmo%2B6C3MgpBKfGighFcjZZhkvk_xH1R0nzyjfyqA%40mail.gmail.com.


Re: Advice please.

2020-08-02 Thread 'Ryan Nowakowski' via Django users



On August 2, 2020 7:21:04 PM CDT, Hector Berrones  wrote:
>I have very little experience using django and I would like to know how
>would be the most conveniente way  to store and manage the common data
>in a
>django proyect that would have several  applications  when I say common
>data I mean information about tables cities, Countries, Catalog
>Sections I
>mean information that usera can use select from a Select Field in for
>example.
>

For your model, if the data is relatively static, use a CharField with choices. 
If the data is likely to change often, use a model for each kind of data and 
link them together with ForeignKey. 

Then in your ModelForm, either the CharField with choices or the ForeignKey 
will be shown as a ChoiceField which renders as a select input in your template.

-- 
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/FE1AAC21-E0DA-49F2-AFAF-36142DFC83B5%40fattuba.com.


Re: 'str' object has no attribute '_meta'

2020-08-02 Thread coolguy
please provide some details. It's pretty vague at this time.

On Sunday, August 2, 2020 at 6:12:33 PM UTC-4, Giovanni Silva wrote:
>
>
>
> -- 
> *Giovanni Silva*
> (31) 9 9532-1877
>

-- 
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/693e920e-de08-47ad-869d-6a0c450d9127o%40googlegroups.com.


Advice please.

2020-08-02 Thread Hector Berrones
Hi Bros,

I have very little experience using django and I would like to know how
would be the most conveniente way  to store and manage the common data in a
django proyect that would have several  applications  when I say common
data I mean information about tables cities, Countries, Catalog Sections I
mean information that usera can use select from a Select Field in for
example.

Thanks in advance for reading 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/CAFFaoU%2BvDpH%3DUxLs-uVQfbskMTuv-NXhwMvQ9%2Biua65B75MnAw%40mail.gmail.com.


'str' object has no attribute '_meta'

2020-08-02 Thread Giovanni Silva
-- 
*Giovanni Silva*
(31) 9 9532-1877

-- 
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/CABO2r9fcEK-mZmUdE7yE%3DsBaroCx8Omu7%2BrJK-HpkNXq6D_4ng%40mail.gmail.com.


Re: Udemy Clone

2020-08-02 Thread Kasper Laudrup

Hi Yedant,

On 02/08/2020 17.54, vedant mehta wrote:

I m facing many problems. Video player , forum for qna, creating assignment 
page, stars for the instructor, generating certificate.



So far we can gather that you want to do something, but have no idea how 
to do any of it and therefore need some help.


Nothing wrong with that, but it would greatly improve your chances of 
getting help if you try to clarify which kind of help you are looking for.


Do you have any programming experience at all and do you have some code 
you are willing to share so someone can have a look at it?


Are you looking for a mentor and would you be willing to pay someone to 
help you learning Python/Django development?


Do you have any specific problems that you would like anyone to help you 
with?


So far, no one knows but you, so you'll probably not get any relevant 
help before you make it clear what you're looking for.


Kind regards,

Kasper Laudrup

--
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/ff1b0da0-0b14-02ce-74fe-e564fd0f69aa%40stacktrace.dk.


Re: Need to build a functionalty:- File Explorer like sFTPClient/Filezilla (Preferred lang- python with Django) in web application to access file system of any server with any OS

2020-08-02 Thread Kasper Laudrup

Hi Vishnu,

On 02/08/2020 18.33, Vishnu Bhandari wrote:

HI Kasper,
Its an organisation project. I am expecting some leads to initiate this 
project. Like which library can be used for this.




OK, nothing wrong with that. But maybe you should try to make that clear?

I just saw a list of quite specific requirements which looks much more 
like something you were looking to hire someone to do.


Anyway, best of luck with the project. It sounds quite interesting and 
challenging (in a positive way). Sorry I cannot be of help, but hope 
it's something you'll be able to share.


Kind regards,

Kasper Laudrup

--
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/e79ba33b-834f-ffde-1ddf-ec6296f0cf76%40stacktrace.dk.


Re: Udemy Clone

2020-08-02 Thread vedant mehta
>From scratch . 

-- 
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/c425b6e5-4bbb-4931-abe2-e39bf86582c6o%40googlegroups.com.


Re: Udemy Clone

2020-08-02 Thread vedant mehta
I m facing many problems. Video player , forum for qna, creating assignment 
page, stars for the instructor, generating certificate.

-- 
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/74a87845-5609-4163-b22e-ebd01da58a69o%40googlegroups.com.


Django context to React component

2020-08-02 Thread jose ivan perez diaz
Hi Everyone,
Where can I found a guide to combine django and React? I mean, what I want is 
passing the context to a React component, any clue?, I know that is possible 
combine them throw django rest framework through an API, but is it possible 
work with the context from django in React, thaks 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/2733197f-1851-44a3-9a03-b585551ab6a6o%40googlegroups.com.


Re: Need to build a functionalty:- File Explorer like sFTPClient/Filezilla (Preferred lang- python with Django) in web application to access file system of any server with any OS

2020-08-02 Thread Vishnu Bhandari
Hi Julio,
Thanks for sharing the reference. But i need to create folder structure
which we get from remote servers like filezilla.

On Sun, Aug 2, 2020 at 10:10 PM Julio Cojom 
wrote:

> This is a frontend job, I searched this a time ago and in the search,
> there are some tutorials with JavaScript frameworks like angular or Vue.
>
>
> https://medium.com/js-dojo/how-to-build-a-file-manager-storage-web-app-with-django-rest-framework-and-vue-js-e89a83318e9c
>
> On Sun, Aug 2, 2020, 10:34 AM Vishnu Bhandari 
> wrote:
>
>> HI Kasper,
>> Its an organisation project. I am expecting some leads to initiate this
>> project. Like which library can be used for this.
>>
>> On Sun, Aug 2, 2020 at 10:00 PM Kasper Laudrup 
>> wrote:
>>
>>> Hi Vishnu,
>>>
>>> If you're looking to hire someone to create this project for you, you
>>> would probably have a better chance of getting some responses if you
>>> include things like how much your willing to pay, which kind of
>>> experience your looking for, how long you've expecting someone to work
>>> on this etc.
>>>
>>> Kind regards,
>>>
>>> Kasper Laudrup
>>>
>>> --
>>> 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/755eb573-cccb-f979-dec2-a36967f40332%40stacktrace.dk
>>> .
>>>
>> --
>> 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/CALeETXJy-VKj6KaqmO%3DsvE4EBteXCq5qtviOQj3Spz00F3imXQ%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/CAHRQUHn87jcWL9KF0MA9FtY1o0OSHhrG1pNPXVg%2B8jAnP5DGcQ%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/CALeETXLf2uXtSiewd929ww1SYSfXCD27KB8TBnABjGBD1TVHEw%40mail.gmail.com.


Re: Need to build a functionalty:- File Explorer like sFTPClient/Filezilla (Preferred lang- python with Django) in web application to access file system of any server with any OS

2020-08-02 Thread Julio Cojom
This is a frontend job, I searched this a time ago and in the search, there
are some tutorials with JavaScript frameworks like angular or Vue.

https://medium.com/js-dojo/how-to-build-a-file-manager-storage-web-app-with-django-rest-framework-and-vue-js-e89a83318e9c

On Sun, Aug 2, 2020, 10:34 AM Vishnu Bhandari 
wrote:

> HI Kasper,
> Its an organisation project. I am expecting some leads to initiate this
> project. Like which library can be used for this.
>
> On Sun, Aug 2, 2020 at 10:00 PM Kasper Laudrup 
> wrote:
>
>> Hi Vishnu,
>>
>> If you're looking to hire someone to create this project for you, you
>> would probably have a better chance of getting some responses if you
>> include things like how much your willing to pay, which kind of
>> experience your looking for, how long you've expecting someone to work
>> on this etc.
>>
>> Kind regards,
>>
>> Kasper Laudrup
>>
>> --
>> 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/755eb573-cccb-f979-dec2-a36967f40332%40stacktrace.dk
>> .
>>
> --
> 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/CALeETXJy-VKj6KaqmO%3DsvE4EBteXCq5qtviOQj3Spz00F3imXQ%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/CAHRQUHn87jcWL9KF0MA9FtY1o0OSHhrG1pNPXVg%2B8jAnP5DGcQ%40mail.gmail.com.


Re: Need to build a functionalty:- File Explorer like sFTPClient/Filezilla (Preferred lang- python with Django) in web application to access file system of any server with any OS

2020-08-02 Thread Vishnu Bhandari
HI Kasper,
Its an organisation project. I am expecting some leads to initiate this
project. Like which library can be used for this.

On Sun, Aug 2, 2020 at 10:00 PM Kasper Laudrup 
wrote:

> Hi Vishnu,
>
> If you're looking to hire someone to create this project for you, you
> would probably have a better chance of getting some responses if you
> include things like how much your willing to pay, which kind of
> experience your looking for, how long you've expecting someone to work
> on this etc.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> 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/755eb573-cccb-f979-dec2-a36967f40332%40stacktrace.dk
> .
>

-- 
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/CALeETXJy-VKj6KaqmO%3DsvE4EBteXCq5qtviOQj3Spz00F3imXQ%40mail.gmail.com.


Re: Need to build a functionalty:- File Explorer like sFTPClient/Filezilla (Preferred lang- python with Django) in web application to access file system of any server with any OS

2020-08-02 Thread Kasper Laudrup

Hi Vishnu,

If you're looking to hire someone to create this project for you, you 
would probably have a better chance of getting some responses if you 
include things like how much your willing to pay, which kind of 
experience your looking for, how long you've expecting someone to work 
on this etc.


Kind regards,

Kasper Laudrup

--
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/755eb573-cccb-f979-dec2-a36967f40332%40stacktrace.dk.


Re: How to do the chrome extension work only with logged users?

2020-08-02 Thread Kasper Laudrup

Hi Bruno,

On 02/08/2020 07.04, Bruno Salles Pereira wrote:

How to do the chrome extension work only with logged users



This is not the place for Chrome extension development. Try here instead:

https://groups.google.com/a/chromium.org/forum/#!forum/chromium-extensions

Kind regards,

Kasper Laudrup

--
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/7220d056-83b3-2bf2-76ab-bf8df3438026%40stacktrace.dk.


Need to build a functionalty:- File Explorer like sFTPClient/Filezilla (Preferred lang- python with Django) in web application to access file system of any server with any OS

2020-08-02 Thread Vishnu Bhandari
Detailed Requirement:-

   -

   user log in into web application, he will find multiple group of servers
   shown on UI section (Stored in database)
   -

   In group of server, there will be multiple servers (can be Linux,
   windows, fadora, etc.)
   -

   User clicks on any of the server (No need to put username, password of
   that server as it will be handled in backend).
   -

   Server gets connectivity. File System link will appear (Button click)
   -

   On the click of File System link, it will browse the directory structure
   like (C dirve,D drive in case of windows server), sub-directories, files
   present on that particular server depending upon the permissions logged in
   User have.
   -

   User should able to delete the directory/sub-directory/files, open the
   file, edit, and save it again like filizilla.
   -

   All these operations need to perform in web application, just like any
   SFTP Clients e.g., sFTP Client, FileZilla, User should have the file
   explorer on UI(not desktop file explorer, totally on webapplication).
   -

   We have tried to achieve this using network library PARAMIKO which can
   be used to run the custom commands on any remote server.
   -

   In this we accessed the directories, sub-directories, files present on
   remote server
   -

   But for building directory structure with filesystem functionality as
   described above could not find.
   -

   If anyone has any related source code..Please share..


Thanks...!
Vishnu Bhandari
09561879917

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


How to do the chrome extension work only with logged users?

2020-08-02 Thread Bruno Salles Pereira
How to do the chrome extension work only with logged 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/68625375-4435-493f-a9b4-f5625169750an%40googlegroups.com.


Re: Udemy Clone

2020-08-02 Thread Anu Pande
Hi ! At what step of the project do you need help?

On Friday, July 31, 2020 at 7:17:32 PM UTC+5:30, vedant mehta wrote:
>
> I m creating a udemy clone can anyone 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/df89dfda-caae-4785-abcf-2f1a0be6d95co%40googlegroups.com.


Re: file format changer

2020-08-02 Thread Integr@te System
Hi Stephen,

If you do still find out any relative information about your question, take
a look in some python standard packages json/xml... then process it or
tools usql tsql in synapse/ spark/bigquery...
Hope it helpful and please see here without your topic.
Tks.

On Sun, Aug 2, 2020, 2:15 AM Kasper Laudrup  wrote:

> Hi John,
>
> On 01/08/2020 19.34, John McClain wrote:
> > Might make sense to convert images to different formats if you have tons
> of them, so not exactly a bad question!
> >
>
> Indeed, that might make sense. If this was a question on how to create a
> web interface in Django for converting images to different formats, it
> would even have been relevant for this mailing list.
>
> The problem is, that was not the question, so I don't see the point in
> trying to guess what other questions might have been relevant.
>
> > Before crushing the guy maybe you could ask what the use case is!
> >
>
> I did try to ask that. I pointed out that the question as it is now
> doesn't make any sense (it doesn't) and see of there was some way of
> formulating a question that would make sense. It might not sound like
> it, and sorry if that's the case, but I'm actually trying to be helpful.
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> 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/4eea0fbc-f9ee-ea3d-f21c-72ba66117782%40stacktrace.dk
> .
>

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


Re: Udemy Clone

2020-08-02 Thread Venkata Penumatsa
Is this project already started and in middle ? Or from scratch ?

On Sun, 2 Aug 2020 at 2:18 AM, jhabar singh 
wrote:

> what help do u need ?
>
>
> On Fri, Jul 31, 2020 at 7:16 PM vedant mehta 
> wrote:
>
>> I m creating a udemy clone can anyone 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/e3d33d60-67ef-4356-a1ab-b8fa6e7db462o%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/CAJ1QTgmJv44Lje6wpd_a0d4-3_KG_Gq%3D3QaVVAX6-rA%2Bkfk7rQ%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/CAPROKTcJyPb8k0j8XBV8NFQCR-mg_%3DWsCOgCB4Dn3dRG6rtSLg%40mail.gmail.com.