Re: Book

2024-02-08 Thread Ruby
You are getting this because the database needs to have a value for
existing row(s), you can set default value or make the new field nullable
Either of these would work for you

Transactions(models.Model):
income = models.IntegerField(null=True, blank=True)
expense = models.IntegerField(null=True, blank=True)


Or


Transactions(models.Model):
income = models.IntegerField(default=0)
expense = models.IntegerField(default=0)

On Thu, Feb 8, 2024, 18:29 Janet Anastacia 
wrote:

> RE: DJANGO MODELS
> i have created an application called expense in django which has two
> fields in the models.py file which looks like class
> Transactions(models.Model):
> income = models.IntegerField(null=False, blank=False)
> expense = models.IntegerField(null=False, blank=False)
>
> I want my application to allow users to enter their expense and income
> themselves and these fields must be provided, it should not be empty. But
> when i run the command python manage.py makemigrations i get the this: It
> is impossible to add a non-nullable field 'expense' to transactions without
> specifying a default. This is because the database needs something to
> populate existing rows.
> Please select a fix: 1) Provide a one-off default now (will be set on all
> existing rows with a null value for this column) 2) Quit and manually
> define a default value in models.py. Select an option: Please select a
> valid option: Please select a valid option:
> i have chosen option 2 but still got the same prompt. how do solve this.
>
>
> On Sat, Feb 3, 2024 at 9:00 PM Kevin Tuo  wrote:
>
>> Good idea, Thanks!
>>
>> Envoyé à partir de Outlook pour Android <https://aka.ms/AAb9ysg>
>> --
>> *From:* django-users@googlegroups.com  on
>> behalf of Obam Olohu 
>> *Sent:* Saturday, February 3, 2024 4:15:02 PM
>> *To:* django-users@googlegroups.com 
>> *Subject:* Re: Book
>>
>> why don't you learn directly from a tutor?
>>
>>
>> On Thu, Feb 1, 2024 at 3:14 AM Kevin Tuo  wrote:
>>
>> Hello, Please can I get a book for building a portfolio website with
>> django?
>>
>>
>> Envoyé à partir de Outlook pour Android <https://aka.ms/AAb9ysg>
>>
>> --
>> 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/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com
>> <https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com?utm_medium=email_source=footer>
>> .
>>
>> --
>> 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/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
>> --
>> 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/VI1PR07MB511726EE0F530FF06C424722FA412%40VI1PR07MB5117.eurprd07.prod.outlook.com
>> <https://groups.google.com/d/msgid/django-users/VI1PR07MB511726EE0F530FF06C424722FA412%40VI1PR07MB5117.eurprd07.prod.outlook.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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/CAA_zVTGp-HouU4Fe4KVWyTuzGTN_C%2BOXPfiDGg6AKxHHuYMgcw%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAA_zVTGp-HouU4Fe4KVWyTuzGTN_C%2BOXPfiDGg6AKxHHuYMgcw%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAPUD46tc5XjYP2VAVM0n3W%3Dx0ch1vKWCirbEmrMiaqV-4simAA%40mail.gmail.com.


Re: Book

2024-02-08 Thread Janet Anastacia
RE: DJANGO MODELS
i have created an application called expense in django which has two fields
in the models.py file which looks like class Transactions(models.Model):
income = models.IntegerField(null=False, blank=False)
expense = models.IntegerField(null=False, blank=False)

I want my application to allow users to enter their expense and income
themselves and these fields must be provided, it should not be empty. But
when i run the command python manage.py makemigrations i get the this: It
is impossible to add a non-nullable field 'expense' to transactions without
specifying a default. This is because the database needs something to
populate existing rows.
Please select a fix: 1) Provide a one-off default now (will be set on all
existing rows with a null value for this column) 2) Quit and manually
define a default value in models.py. Select an option: Please select a
valid option: Please select a valid option:
i have chosen option 2 but still got the same prompt. how do solve this.


On Sat, Feb 3, 2024 at 9:00 PM Kevin Tuo  wrote:

> Good idea, Thanks!
>
> Envoyé à partir de Outlook pour Android <https://aka.ms/AAb9ysg>
> --
> *From:* django-users@googlegroups.com  on
> behalf of Obam Olohu 
> *Sent:* Saturday, February 3, 2024 4:15:02 PM
> *To:* django-users@googlegroups.com 
> *Subject:* Re: Book
>
> why don't you learn directly from a tutor?
>
>
> On Thu, Feb 1, 2024 at 3:14 AM Kevin Tuo  wrote:
>
> Hello, Please can I get a book for building a portfolio website with
> django?
>
>
> Envoyé à partir de Outlook pour Android <https://aka.ms/AAb9ysg>
>
> --
> 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/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com
> <https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com?utm_medium=email_source=footer>
> .
>
> --
> 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/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
> --
> 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/VI1PR07MB511726EE0F530FF06C424722FA412%40VI1PR07MB5117.eurprd07.prod.outlook.com
> <https://groups.google.com/d/msgid/django-users/VI1PR07MB511726EE0F530FF06C424722FA412%40VI1PR07MB5117.eurprd07.prod.outlook.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAA_zVTGp-HouU4Fe4KVWyTuzGTN_C%2BOXPfiDGg6AKxHHuYMgcw%40mail.gmail.com.


Re: Book

2024-02-03 Thread Kevin Tuo
Good idea, Thanks!

Envoyé à partir de Outlook pour Android<https://aka.ms/AAb9ysg>

From: django-users@googlegroups.com  on behalf 
of Obam Olohu 
Sent: Saturday, February 3, 2024 4:15:02 PM
To: django-users@googlegroups.com 
Subject: Re: Book

why don't you learn directly from a tutor?


On Thu, Feb 1, 2024 at 3:14 AM Kevin Tuo 
mailto:tuokev...@gmail.com>> wrote:
Hello, Please can I get a book for building a portfolio website with django?


Envoyé à partir de Outlook pour Android<https://aka.ms/AAb9ysg>

--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com<https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com?utm_medium=email_source=footer>.

--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com?utm_medium=email_source=footer>.

-- 
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/VI1PR07MB511726EE0F530FF06C424722FA412%40VI1PR07MB5117.eurprd07.prod.outlook.com.


Re: Book

2024-02-03 Thread Kevin Tuo
Thanks for advice sir; I will do that!
Nice weekend!

Envoyé à partir de Outlook pour Android<https://aka.ms/AAb9ysg>

From: django-users@googlegroups.com  on behalf 
of BUHNYUY RONALD 
Sent: Saturday, February 3, 2024 5:17:16 PM
To: django-users@googlegroups.com 
Subject: Re: Book

Greetings. Saying just a portfolio site, basically there will no Django book 
that will teach u that. U have to get a tutor and start from a base. I do offer 
some Django courses from beginner level to advanced

On Sat, 3 Feb 2024, 17:16 Obam Olohu, 
mailto:olohuo...@gmail.com>> wrote:
why don't you learn directly from a tutor?


On Thu, Feb 1, 2024 at 3:14 AM Kevin Tuo 
mailto:tuokev...@gmail.com>> wrote:
Hello, Please can I get a book for building a portfolio website with django?


Envoyé à partir de Outlook pour Android<https://aka.ms/AAb9ysg>

--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com<https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com?utm_medium=email_source=footer>.

--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com?utm_medium=email_source=footer>.

--
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<mailto:django-users+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAO0F2GYnkMY8fY_0asOyMnb6dk3nzSYe5Wpc2%3DLHjx7BeuJDBg%40mail.gmail.com<https://groups.google.com/d/msgid/django-users/CAO0F2GYnkMY8fY_0asOyMnb6dk3nzSYe5Wpc2%3DLHjx7BeuJDBg%40mail.gmail.com?utm_medium=email_source=footer>.

-- 
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/VI1PR07MB5117794750FECBD2FB73C8B4FA412%40VI1PR07MB5117.eurprd07.prod.outlook.com.


Re: Book

2024-02-03 Thread BUHNYUY RONALD
Greetings. Saying just a portfolio site, basically there will no Django
book that will teach u that. U have to get a tutor and start from a base. I
do offer some Django courses from beginner level to advanced

On Sat, 3 Feb 2024, 17:16 Obam Olohu,  wrote:

> why don't you learn directly from a tutor?
>
>
> On Thu, Feb 1, 2024 at 3:14 AM Kevin Tuo  wrote:
>
>> Hello, Please can I get a book for building a portfolio website with
>> django?
>>
>>
>> Envoyé à partir de Outlook pour Android <https://aka.ms/AAb9ysg>
>>
>> --
>> 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/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com
>> <https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAMc8uwNeDWk8QRicjFHg_Ph6%3DrN7ARRgGxAQBzxVM7ASFupL9g%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

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


Re: Book

2024-02-03 Thread Obam Olohu
why don't you learn directly from a tutor?


On Thu, Feb 1, 2024 at 3:14 AM Kevin Tuo  wrote:

> Hello, Please can I get a book for building a portfolio website with
> django?
>
>
> Envoyé à partir de Outlook pour Android <https://aka.ms/AAb9ysg>
>
> --
> 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/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com
> <https://groups.google.com/d/msgid/django-users/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com?utm_medium=email_source=footer>
> .
>

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


Book

2024-01-31 Thread Kevin Tuo
Hello, Please can I get a book for building a portfolio website with django?


Envoyé à partir de Outlook pour Android<https://aka.ms/AAb9ysg>

-- 
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/AS4PR09MB55764DA8881C3AB572B7468AFA7C2%40AS4PR09MB5576.eurprd09.prod.outlook.com.


Request for Django for Professionals book.

2023-08-31 Thread ALINDA Fortunate
Hello Team .

I am done with Django for beginners.

Any one to share with me Django for professionals 4.0 please .

+256774339676

 "If you want to live a happy life, tie it to a goal, not to people or
things."

A graduate of Bachelors Degree of Science in Computer Science of Gulu
University.

@FortunateAlinda
Passionate about Python Development
And Computer related Dynamics

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


لإRe: How is Django For Api book

2023-08-17 Thread abu yahya Diab
There's no book called *William S. *
*Vincent - REST APIs with Django.*
في الأربعاء، 16 أغسطس 2023 في تمام الساعة 4:50:59 م UTC+3، كتب ivan harold 
رسالة نصها:

> *William S. **Vincent - REST APIs with Django*
>
> *I second this one this is a good read to boost your knowledge and  
> learnings.*
>
> On Tuesday, August 15, 2023 at 4:30:50 PM UTC-5 Roy Lagg wrote:
>
>>
>> You could check out *William S. Vincent - REST APIs with Django. *The 
>> book is easy to read and has industry-standard tips and guides.
>> On Tuesday, August 15, 2023 at 1:59:53 AM UTC+3 abu yahya Diab wrote:
>>
>>> I have good knowledge in API, you can say beginner knowledge in API.
>>> I'm trying to delve deeper in API, when I check the Django For Api book 
>>> content, I noticed .that its not that professional book
>>>
>>

-- 
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/4f011ce9-6c93-49df-8740-ebdcfba0b46bn%40googlegroups.com.


Re: How is Django For Api book

2023-08-16 Thread ivan harold
*William S. **Vincent - REST APIs with Django*

*I second this one this is a good read to boost your knowledge and  
learnings.*

On Tuesday, August 15, 2023 at 4:30:50 PM UTC-5 Roy Lagg wrote:

>
> You could check out *William S. Vincent - REST APIs with Django. *The 
> book is easy to read and has industry-standard tips and guides.
> On Tuesday, August 15, 2023 at 1:59:53 AM UTC+3 abu yahya Diab wrote:
>
>> I have good knowledge in API, you can say beginner knowledge in API.
>> I'm trying to delve deeper in API, when I check the Django For Api book 
>> content, I noticed .that its not that professional book
>>
>

-- 
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/4facb3b0-6c39-465d-bb24-18948a44b2c9n%40googlegroups.com.


Re: How is Django For Api book

2023-08-15 Thread Roy Lagg

You could check out *William S. Vincent - REST APIs with Django. *The book 
is easy to read and has industry-standard tips and guides.
On Tuesday, August 15, 2023 at 1:59:53 AM UTC+3 abu yahya Diab wrote:

> I have good knowledge in API, you can say beginner knowledge in API.
> I'm trying to delve deeper in API, when I check the Django For Api book 
> content, I noticed .that its not that professional book
>

-- 
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/090cdd56-68ed-4827-b9f1-ebc4dcee9a67n%40googlegroups.com.


How is Django For Api book

2023-08-14 Thread abu yahya Diab
I have good knowledge in API, you can say beginner knowledge in API.
I'm trying to delve deeper in API, when I check the Django For Api book 
content, I noticed .that its not that professional book

-- 
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/53e6969d-44af-411e-8d49-5dddc5f80736n%40googlegroups.com.


Re: Chrome book vs Django application development

2021-05-23 Thread Derek
Perhaps install Linux and work from there?

https://www.howtogeek.com/363331/how-to-set-up-and-use-linux-apps-on-chrome-os/

It may be that PostgreSQL is too demanding and can be avoided for 
development purposes; rather use sqlite.

It could also be worth considering to switching to cloud-based CI - replace 
Github & Jenkins with GitLab CI/CD - 
see https://dzone.com/articles/jenkins-vs-gitlab-ci-battle-of-cicd-tools

(I don't own a Chromebook but would be curious as to how well all this 
works.)

On Sunday, 23 May 2021 at 02:29:38 UTC+2 ram.mu...@gmail.com wrote:

> Hi,
>
> I'm wondering whether any one used Chrome book for development especially 
> with this software stack
>
> 1. Django
> 2. Python
> 3. Vue.js
> 4. Postgres
> 5. Nginx
> 6. Gunicorn
> 7. Github
> 8. Jenkins
>
> Best Regards,
> ~Ram
>
>
>
>

-- 
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/ad5e72a4-2c40-49cd-970d-2e9b9c381c26n%40googlegroups.com.


Chrome book vs Django application development

2021-05-22 Thread Ram
Hi,

I'm wondering whether any one used Chrome book for development especially
with this software stack

1. Django
2. Python
3. Vue.js
4. Postgres
5. Nginx
6. Gunicorn
7. Github
8. Jenkins

Best Regards,
~Ram

-- 
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/CA%2BOi5F0Ta6EN3zeXT3PLJa5Fqf0bOtYPUao7B761WAocz4-LTw%40mail.gmail.com.


Re: best book for learning django

2020-08-27 Thread rbarh...@gmail.com
2scoops of Django is written about version 1.8, we are now on 3.X...It's a 
problem with books and tutorials alike.  With books, which are generally 
edited and have errata, they just get out of date quickly.  With tutorials, 
people build them with mistakes and you have to rely on the community to 
help you with those mistakes because the creator has generally moved on.  I 
like books but given these problems, I prefer tutorials.  Two guys at Real 
Python, Martin Breuss and David Amos, especially Amos, will actually try to 
help you.  Cannot beat that.

On Tuesday, August 25, 2020 at 7:23:06 AM UTC-7 amankum...@gmail.com wrote:

> 2scoops of django
>
> On Tue, 25 Aug 2020, 14:20 nAnDa KuMaR k,  wrote:
>
>> hii friends 
>> i need your help....
>> "which is best book learn django" 
>> please help me friends.
>>
>> -- 
>>
> 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/4878f832-4c3c-40eb-a569-b38e1fdd8238n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/django-users/4878f832-4c3c-40eb-a569-b38e1fdd8238n%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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/343ac633-28cf-4f27-884a-95054a7a96ddn%40googlegroups.com.


Re: best book for learning django

2020-08-25 Thread 1 9 5 9 0 Aman kumar
2scoops of django

On Tue, 25 Aug 2020, 14:20 nAnDa KuMaR k,  wrote:

> hii friends
> i need your help
> "which is best book learn django"
> please help me friends.
>
> --
> 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/4878f832-4c3c-40eb-a569-b38e1fdd8238n%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/4878f832-4c3c-40eb-a569-b38e1fdd8238n%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAF77ry36C%2B_Vs-cst23GD-oz899Un8o55askeDEqReamm1vXpA%40mail.gmail.com.


RES: best book for learning django

2020-08-25 Thread Samuel Nogueira
Hi,A lot of people ask this question here. The best place to learn django is from the tutorials in the documentation. Books about tech often get outdated, so is not the best thing spend your money or time trying to look for a book. Link for the tutorials: https://docs.djangoproject.com/en/3.1/ -Samuel Nogueira Bacelar GitHub: https://github.com/SamuelNoB Linkedin: https://www.linkedin.com/in/samuel-nogueira-87800b1aa/ - De: nAnDa KuMaR kEnviado:terça-feira, 25 de agosto de 2020 05:49Para: Django usersAssunto: best book for learning django hii friends i need your help"which is best book learn django" please help me friends.-- 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/4878f832-4c3c-40eb-a569-b38e1fdd8238n%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/A9870E5B-9E69-4DBF-BEC3-A4DFF78B2982%40hxcore.ol.


Re: best book for learning django

2020-08-25 Thread Aayush Harwani
https://youtu.be/cRF7hIsIO10

This video will solve your problem , must watch.

ayush

On Tue, Aug 25, 2020, 2:20 PM nAnDa KuMaR k 
wrote:

> hii friends
> i need your help
> "which is best book learn django"
> please help me friends.
>
> --
> 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/4878f832-4c3c-40eb-a569-b38e1fdd8238n%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/4878f832-4c3c-40eb-a569-b38e1fdd8238n%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAHKG15HPDWgpxgZiY0C%2BCXULBM4GD1XeEMcPw_M-AZmvhW4HfQ%40mail.gmail.com.


best book for learning django

2020-08-25 Thread nAnDa KuMaR k
hii friends 
i need your help
"which is best book learn django" 
please help me friends.

-- 
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/4878f832-4c3c-40eb-a569-b38e1fdd8238n%40googlegroups.com.


Re: Complete book

2019-10-22 Thread Tato
A big thanks from brazil for the doc. Its seems very helpful

Em ter, 22 de out de 2019 17:52, victor jack 
escreveu:

> Thanks a lot for sharing
>
> On 19 Oct 2019, at 15:09, ISAAC NELSON S.B. KARGBO <
> insbkar...@njala.edu.sl> wrote:
>
> 
> Try this one out
>
> On Sat, Oct 19, 2019, 13:47 Md Nayem Tushar  wrote:
>
>> Have any easy and properly complete book in django? pls ans 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/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com?utm_medium=email_source=footer>
> .
> 
>
> --
> 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/E13DDDE6-5FEA-413A-B3AF-97BE709454C9%40gmail.com
> <https://groups.google.com/d/msgid/django-users/E13DDDE6-5FEA-413A-B3AF-97BE709454C9%40gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAJPi9yFSZBJTdmg_Z7aMRLhK2-2NiGONrny2YHuB4ZgiEnpzfA%40mail.gmail.com.


Re: Complete book

2019-10-22 Thread victor jack
Thanks a lot for sharing 

> On 19 Oct 2019, at 15:09, ISAAC NELSON S.B. KARGBO  
> wrote:
> 
> 
> Try this one out
> 
>> On Sat, Oct 19, 2019, 13:47 Md Nayem Tushar  wrote:
>> Have any easy and properly complete book in django? pls ans 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/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%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/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%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/E13DDDE6-5FEA-413A-B3AF-97BE709454C9%40gmail.com.


Re: Complete book

2019-10-21 Thread neeta kashyap
Thank you so much for shaing this  book. I Really appreciate it.
Thanks
Dr. Neeta

On Sun, Oct 20, 2019 at 9:48 PM V S V Narsimha Murthy 
wrote:

>
> Thanks a lot for shaing the book. Really appreciate it.
>
> Best Regards,
>
> On Sat, Oct 19, 2019 at 7:36 PM ISAAC NELSON S.B. KARGBO <
> insbkar...@njala.edu.sl> wrote:
>
>> Try this one out
>>
>> On Sat, Oct 19, 2019, 13:47 Md Nayem Tushar  wrote:
>>
>>> Have any easy and properly complete book in django? pls ans 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/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com
>>> <https://groups.google.com/d/msgid/django-users/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>> --
>> 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/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
>
>
> --
> Thanks
> Narasimha Murthy
>
> --
> 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/CAE%3D5Kz4iWorhzhdTodQqufJTg5V3CE3u2Bq69XRqvPA--dz-HA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAE%3D5Kz4iWorhzhdTodQqufJTg5V3CE3u2Bq69XRqvPA--dz-HA%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAGj4niyYv5qxBgOdvjpft%3D4g89xR9%2BS6kH3PT7idenjNrU9f8g%40mail.gmail.com.


Re: Complete book

2019-10-21 Thread Om Anirudh
Thank you for sharing. 

On Saturday, 19 October 2019 19:40:14 UTC+5:30, ISAAC NELSON S.B. KARGBO 
wrote:
>
> Try this one out
>
> On Sat, Oct 19, 2019, 13:47 Md Nayem Tushar  > wrote:
>
>> Have any easy and properly complete book in django? pls ans 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/django-users/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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/4d97c684-a2c6-4e5e-89d7-226b19263ce1%40googlegroups.com.


Re: Complete book

2019-10-20 Thread V S V Narsimha Murthy
Thanks a lot for shaing the book. Really appreciate it.

Best Regards,

On Sat, Oct 19, 2019 at 7:36 PM ISAAC NELSON S.B. KARGBO <
insbkar...@njala.edu.sl> wrote:

> Try this one out
>
> On Sat, Oct 19, 2019, 13:47 Md Nayem Tushar  wrote:
>
>> Have any easy and properly complete book in django? pls ans 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/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com?utm_medium=email_source=footer>
> .
>


-- 
Thanks
Narasimha Murthy

-- 
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/CAE%3D5Kz4iWorhzhdTodQqufJTg5V3CE3u2Bq69XRqvPA--dz-HA%40mail.gmail.com.


Re: Complete book

2019-10-19 Thread Greg Hicks
A big thanks from me also.  This looks current and definitive.

Greg

-- 
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/CAHyAQuDsN8LZyQCD281MgogRyyZxTB9PF1e%2B9aKgqiLwv2MeOQ%40mail.gmail.com.


Re: Complete book

2019-10-19 Thread dandu sreenivasulu
Thank you so much for the pdf.

On Sat, Oct 19, 2019 at 7:33 PM ISAAC NELSON S.B. KARGBO <
insbkar...@njala.edu.sl> wrote:

> Try this one out
>
> On Sat, Oct 19, 2019, 13:47 Md Nayem Tushar  wrote:
>
>> Have any easy and properly complete book in django? pls ans 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/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
> --
> 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/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAA4EwCsFAkvbZ99z5aT9jX-R849Gkxg%3DTbSaSRvE-qUShgOL6w%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
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/CAAZQr5uUD2DmPFF17sVSS1q7Z-xJJu%2BWZyuA3cGOJJwKaU_N2g%40mail.gmail.com.


Complete book

2019-10-19 Thread Md Nayem Tushar
Have any easy and properly complete book in django? pls ans 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/b523ac3b-9aad-4c1b-a4f9-d9310b6f69da%40googlegroups.com.


Learning Djanog Use book

2019-05-18 Thread Rana Solving31
Have anyone better book on Django latest version 2.2 ? which is free 
version ,means without paid ,if i can download this.

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8a779a1f-074e-4fde-9fc0-f6ac81770ea8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Blog post that look like pages in open book

2019-03-25 Thread MJ
Hello, 

I have an idea for a simple blog site that look like a open book. For a 
simple prototype this is only text nothing fancy, no animation of turning 
page and so on. But I stumble on a problem with presenting simple text. 

First I assume that every page in the "book" is diffrent post/object but 
what if the text is too long to fit one page. I so than text should go to 
another page, but how to do this with a single post ? 

How to tell when text should go do another page ?

I struggle where to look in django for answers is this some magic in models 
? in templates ?

  


-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/d57c72cb-e890-42ae-a616-dfcef3364a39%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django Book

2018-08-05 Thread Tim Vogt (Tim Vogt)
https://wsvincent.com/about/



> Op 5 aug. 2018, om 17:20 heeft Jun Chen  het volgende 
> geschreven:
> 
> Does anyone know a good django book for the Django 2.0?
> 
> -- 
> 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 
> <mailto:django-users+unsubscr...@googlegroups.com>.
> To post to this group, send email to django-users@googlegroups.com 
> <mailto:django-users@googlegroups.com>.
> Visit this group at https://groups.google.com/group/django-users 
> <https://groups.google.com/group/django-users>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/33981edc-bf8f-4b2f-ba3e-5a7612177e1f%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/django-users/33981edc-bf8f-4b2f-ba3e-5a7612177e1f%40googlegroups.com?utm_medium=email_source=footer>.
> For more options, visit https://groups.google.com/d/optout 
> <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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/44E08945-A68D-4F8D-A2DC-BC9E1204C9E2%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Django Book

2018-08-05 Thread Jun Chen
Does anyone know a good django book for the Django 2.0?

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/33981edc-bf8f-4b2f-ba3e-5a7612177e1f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: about book

2018-07-11 Thread Alessandro Madruga Correia
On Tue, Jul 10, 2018 at 8:29 AM tribhuvan kishor <
tribhuvankishor...@gmail.com> wrote:

> can any one suggest me a better book for django
>


You didn't describe what exactly you are looking for, but..
This is a good introductory book
https://www.amazon.com/Lightweight-Django-Using-WebSockets-Backbone/dp/149194594X





-- 
  ,= ,-_-. =.   [] Alessandro Madruga Correia
 ((_/)o o(\_))  [http://counter.li.org]   Debian User# 342751
   `-'(. .)`-'"O fanatismo é a única forma de força de vontade
   \_/acessível aos fracos." (Friedrich Nietzsche)

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOofabenhbwCOtEeCHEOtxUC6Wm7VpztP%3DXyQrq85sS8LqFxVA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: about book

2018-07-10 Thread Rakesh Singh
you can prefer e-book for better learning.

On Tue, Jul 10, 2018 at 4:46 PM, tribhuvan kishor <
tribhuvankishor...@gmail.com> wrote:

> can any one suggest me a better book for django
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/CACiphSU%3D4Tip5cLpj%3DjOx15GVrTGGL2fMLOuCoJavbtZ1m
> M9MQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CACiphSU%3D4Tip5cLpj%3DjOx15GVrTGGL2fMLOuCoJavbtZ1mM9MQ%40mail.gmail.com?utm_medium=email_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 

*Thanks & Regards*

*Rakesh Singh*
*Diverse Lynx LLC*
*Technical Project Manager*
*786 9230 528*
*rakesh...@gmail.com *
P Please consider your environmental responsibility - think before you
print!

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADJJcgZ6LBZtY6Y5vV%3D3bUXpbw%3D%2Bf-xMjYEQ1e32Pq-fygZpoA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


about book

2018-07-10 Thread tribhuvan kishor
can any one suggest me a better book for django

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACiphSU%3D4Tip5cLpj%3DjOx15GVrTGGL2fMLOuCoJavbtZ1mM9MQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: "canonical" views.py in Django Unleashed book, Chapter 22

2016-10-23 Thread Andrew Pinkham
Hi Malik,

On Jun 30, 2016, at 11:00 PM, Malik Rumi  wrote:
> I found that surprising, but then I'm somewhat isolated so don't claim to 
> know what other folks are doing. Why is this the common practice? Just to 
> save time because the tools are available?

Yup - this is a general software practice: Why reinvent the wheel when it's 
available to you?

Andrew
http://jambonsw.com
http://django-unleashed.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 post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CE883CED-CEF1-4E70-B9E4-1620DF9F0DA8%40andrewsforge.com.
For more options, visit https://groups.google.com/d/optout.


Re: "canonical" views.py in Django Unleashed book, Chapter 22

2016-06-30 Thread Malik Rumi
p.s. -

I did have a couple of other questions, if you don't mind:

1. You end 22.6 by saying

In an actual website, you likely won’t interact with the auth in the way we 
> have. You’ll rely on third-party apps to provide object-level permissions 
> or else on authentication with other services such as Twitter and Facebook. 
>

I found that surprising, but then I'm somewhat isolated so don't claim to 
know what other folks are doing. Why is this the common practice? Just to 
save time because the tools are available?

2. In 22.5, you recommended a static url for profile pages.  Quite apart 
from how often people may update their pages, I didn't understand why you 
suggest that for an otherwise dynamic website. I guess I just assumed 
static urls and static (or 'flat'. as Django likes to call them) pages go 
together, like About Us, and that such pages would be the exception. Was 
this just to make the profiles easy to find and/or bookmark for end users?

Thanks again.




On Wednesday, June 29, 2016 at 5:13:42 PM UTC-7, Malik Rumi wrote:
>
> Although I love the book (so far) for its level of detail and addressing a 
> LOT of issues I am currently dealing with, I have run across a problem. 
> Specifically, the views.py and urls.py in the github repo are NOT the same 
> as the snippets of views.py and urls.py in the book. Now, since I started 
> in Chapter 20, because that's where my issues are, it is possible that all 
> of this is explained and cleared up elsewhere, but a quick search in the 
> online version of the book did not reveal same to me, so,as the author 
> himself asks, I am posting here. 
>
> Github views.py
>
> starting at line 128:
> @class_login_required 
> class ProfileDetail( 
> ProfileGetObjectMixin, DetailView): 
> model = Profile
>
>
> views.py book example 22.13
>  26   from core.utils import UpdateView
> ...
> 134   @class_login_required
> 135   class ProfileUpdate(
> 136   ProfileGetObjectMixin, UpdateView)
> :137   fields = ('about',)
> 138   model = Profile
>
> There is no core.utils or UpdateView in the github version
>
>
> views.py in book example 22.19
> 134   class PublicProfileDetail(DetailView):
> 135   model = Profile
>
> There is no PublicProfileDetail in the github version
>
>
> urls.py in book example 22.20
>  10   from .views import ( 
> 11   ActivateAccount, CreateAccount, 
> 12   DisableAccount, ProfileDetail, ProfileUpdate, 
> 13   PublicProfileDetail, ResendActivationEmail)  .   
> ... 
> 67   urlpatterns = [  .  
>  ...
> 114   url(r'^(?P[\w\-]+)/$',
> 115   PublicProfileDetail.as_view(),
> 116   name='public_profile'),
> 117   ]
>
> Again, there is no PublicProfileDetail in the github version, which stops 
> at line 111
>
> There may be more, but that's what I have right now. It does not make 
> sense to me that the author would go to all this trouble to talk about 
> Public Profiles and then omit them, especially since allowing users to both 
> have them and edit them themselves makes so much sense. Now, I do have the 
> code from the book, which is why I framed my question as the "canonical" 
> version of these codes. Thanks. 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b9f5f11e-c6b5-4c2d-b0fe-097005294486%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: "canonical" views.py in Django Unleashed book, Chapter 22

2016-06-30 Thread Malik Rumi
1. I don't know if it makes any difference, but I don't have the physical 
book. I am reading it online thru my safarionline subscription.
2. Once I got to your repo, I just clicked around to go to views or urls or 
whatever. I didn't think of looking for different commits, because I 
assumed, wrongly, that there would only be one, final, 'canonical' version 
of the code.
3. Looking specifically at urls.py on githhub, I can now see that the link 
you pointed me to is at a different url and has a different commit than the 
one I had looked at. Compare

https://github.com/jambonrose/DjangoUnleashed-1.8/blob/a1d420b17a/user/urls.py
https://github.com/jambonrose/DjangoUnleashed-1.8/blob/83167965e86b82a86a25504c82285dccd79b9e32/user/urls.py

So that must be the issue. Not sure what you can do about that except put a 
lot of notes in the repo. Cloning the whole thing is probably a good idea.

For your marketing fyi, I found out about you and the book after looking at 
your DjangoCon talk about the request response cycle. It so happens I have 
an immediate need to swap out the default user, so those chapters were 
right on time for me. 

Thanks. 

On Wednesday, June 29, 2016 at 5:13:42 PM UTC-7, Malik Rumi wrote:
>
> Although I love the book (so far) for its level of detail and addressing a 
> LOT of issues I am currently dealing with, I have run across a problem. 
> Specifically, the views.py and urls.py in the github repo are NOT the same 
> as the snippets of views.py and urls.py in the book. Now, since I started 
> in Chapter 20, because that's where my issues are, it is possible that all 
> of this is explained and cleared up elsewhere, but a quick search in the 
> online version of the book did not reveal same to me, so,as the author 
> himself asks, I am posting here. 
>
> Github views.py
>
> starting at line 128:
> @class_login_required 
> class ProfileDetail( 
> ProfileGetObjectMixin, DetailView): 
> model = Profile
>
>
> views.py book example 22.13
>  26   from core.utils import UpdateView
> ...
> 134   @class_login_required
> 135   class ProfileUpdate(
> 136   ProfileGetObjectMixin, UpdateView)
> :137   fields = ('about',)
> 138   model = Profile
>
> There is no core.utils or UpdateView in the github version
>
>
> views.py in book example 22.19
> 134   class PublicProfileDetail(DetailView):
> 135   model = Profile
>
> There is no PublicProfileDetail in the github version
>
>
> urls.py in book example 22.20
>  10   from .views import ( 
> 11   ActivateAccount, CreateAccount, 
> 12   DisableAccount, ProfileDetail, ProfileUpdate, 
> 13   PublicProfileDetail, ResendActivationEmail)  .   
> ... 
> 67   urlpatterns = [  .  
>  ...
> 114   url(r'^(?P[\w\-]+)/$',
> 115   PublicProfileDetail.as_view(),
> 116   name='public_profile'),
> 117   ]
>
> Again, there is no PublicProfileDetail in the github version, which stops 
> at line 111
>
> There may be more, but that's what I have right now. It does not make 
> sense to me that the author would go to all this trouble to talk about 
> Public Profiles and then omit them, especially since allowing users to both 
> have them and edit them themselves makes so much sense. Now, I do have the 
> code from the book, which is why I framed my question as the "canonical" 
> version of these codes. Thanks. 
>

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/5c7186c9-6caf-42c4-a062-f9d58798a3e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: "canonical" views.py in Django Unleashed book, Chapter 22

2016-06-30 Thread Andrew Pinkham
Hi Malik!
Thanks for buying my book! I'm glad to hear you like Django Unleashed, but I'm 
sorry you're frustrated with the github repo at 
https://github.com/jambonrose/DjangoUnleashed-1.8 .

Page xiv provides a quick explanation of git commits' relationship to the 
examples in the book. In short: each example in the book has a corresponding 
commit in the github repo (1+ examples per commit). This is why each example 
lists 'filename in hash' at the top of the example. If you suffix 
http://dju.link/ with a commit, it will take you to the diff on github.

For instance, in example 22.13 (which you referenced), the example is listed as 
being 'user/views.py in 83167965e8'. You can browse to 
http://dju.link/83167965e8 to be redirected to the diff of that commit on 
github, or else to http://dju.link/83167965e8/user/views.py to see the state of 
the file at that commit.

NB: if you browse the code on github without adjusting the commit, you're 
seeing the code as it is in Chapter 29 (Chapter 30 has no code in the repo).

If you don't want to browse github, you can also clone the repo, checkout 
commit 83167965e8, and then have the project to run directly on your computer!

Note that each commit message is prefixed with the Chapter that references it 
(such as 'Ch22: Create Profile Update web page.'). What's more, the sample 
gitconfig file in the repo comes with a few neat commands to make moving around 
the repo easier. See 
https://github.com/jambonrose/DjangoUnleashed-1.8#walking-the-repository for 
more info.

Now, to address some of your points directly:

> There is no core.utils or UpdateView in the github version

https://github.com/jambonrose/DjangoUnleashed-1.8/blob/master/core/utils.py#L5

> There is no PublicProfileDetail in the github version

http://dju.link/a1d420b17a
-> 
https://github.com/jambonrose/DjangoUnleashed-1.8/commit/a1d420b17a/

You can then browse to:
https://github.com/jambonrose/DjangoUnleashed-1.8/blob/a1d420b17a/user/views.py#L134

> Again, there is no PublicProfileDetail in the github version, which stops at 
> line 111

http://dju.link/a1d420b17a/user/urls.py
-> 
https://github.com/jambonrose/DjangoUnleashed-1.8/blob/a1d420b17a/user/urls.py

Relevant line is 114:
https://github.com/jambonrose/DjangoUnleashed-1.8/blob/a1d420b17a/user/urls.py#L114

I'm not super sure what you were looking at, or where the confusion occurred, 
but I would be open to your feedback about what you were seeing and how you got 
there, so that I may help others better get the code examples (as I spent *a 
lot* of time making the repo as cleans as possible given my deadlines). 

Hope that's helpful,
Andrew

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/86CD3FC7-D9F3-4705-9410-6275E6C93907%40andrewsforge.com.
For more options, visit https://groups.google.com/d/optout.


"canonical" views.py in Django Unleashed book, Chapter 22

2016-06-29 Thread Malik Rumi
Although I love the book (so far) for its level of detail and addressing a 
LOT of issues I am currently dealing with, I have run across a problem. 
Specifically, the views.py and urls.py in the github repo are NOT the same 
as the snippets of views.py and urls.py in the book. Now, since I started 
in Chapter 20, because that's where my issues are, it is possible that all 
of this is explained and cleared up elsewhere, but a quick search in the 
online version of the book did not reveal same to me, so,as the author 
himself asks, I am posting here. 

Github views.py

starting at line 128:
@class_login_required 
class ProfileDetail( 
ProfileGetObjectMixin, DetailView): 
model = Profile


views.py book example 22.13
 26   from core.utils import UpdateView
...
134   @class_login_required
135   class ProfileUpdate(
136   ProfileGetObjectMixin, UpdateView)
:137   fields = ('about',)
138   model = Profile

There is no core.utils or UpdateView in the github version


views.py in book example 22.19
134   class PublicProfileDetail(DetailView):
135   model = Profile

There is no PublicProfileDetail in the github version


urls.py in book example 22.20
 10   from .views import ( 
11   ActivateAccount, CreateAccount, 
12   DisableAccount, ProfileDetail, ProfileUpdate, 
13   PublicProfileDetail, ResendActivationEmail)  .   
... 
67   urlpatterns = [  .  
 ...
114   url(r'^(?P[\w\-]+)/$',
115   PublicProfileDetail.as_view(),
116   name='public_profile'),
117   ]

Again, there is no PublicProfileDetail in the github version, which stops 
at line 111

There may be more, but that's what I have right now. It does not make sense 
to me that the author would go to all this trouble to talk about Public 
Profiles and then omit them, especially since allowing users to both have 
them and edit them themselves makes so much sense. Now, I do have the code 
from the book, which is why I framed my question as the "canonical" version 
of these codes. Thanks. 

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cf3568a8-5190-4c92-8e9b-9c88b612e14a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how shall I built online address book using Django

2016-04-06 Thread Luis Zárate
Maybe if you help us web could help you.

How do you design your problem?
What are your coding plans?
What problems do you identify?
What do you need to know ? ( models, views, urls, admin site)

Django and the other frameworks are only utilities, are in you the
responsability to solve the problem.

I know you are learning django and don't know a lot of things, but make a
design with all of things that you know of programing in general and
probably django has a solution for all.


El miércoles, 6 de abril de 2016, thumbi migwe 
escribió:
> Hi, Did you manage to this? i'm also new in django and would like to do
this. which tutorial did you use?
>
> --
> 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 https://groups.google.com/group/django-users.
> To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/72d220d3-bdce-4025-8022-72f6460355df%40googlegroups.com
.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
"La utopía sirve para caminar" Fernando Birri

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAG%2B5VyN3D%2BKa%3DY_RBwn5nAAX%3DvKtcmnW469_UGDHRGq%3DufuMsg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: how shall I built online address book using Django

2016-04-06 Thread thumbi migwe
Hi, Did you manage to this? i'm also new in django and would like to do 
this. which tutorial did you use?

-- 
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 https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/72d220d3-bdce-4025-8022-72f6460355df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re. My Django Book.

2015-08-01 Thread Gary Roach
Since I am grinding my way through the learning process right now I thing I 
have some fairly pithy comments to contribute. It seems that no two 
tutorials do things the same way. I got bogged down in Two  Scoops because 
I needed a more detailed cookbook approach. Tango With Django is the best 
except it is written for Django 1.7. There is a serious break between how 
1.7 and 1.8 handle template files in the settings.py file. I still haven't 
recovered from this. Initial setup made me pull my hair out by the roots 
(and I can't afford to loose much more). Some suggestions:
  If your using a database other than the built in SQLite set it up 
first.
  Setup virtualenv and virtualenvmapper next.
  Do everything else inside of virtualenv.
  Install Django with pip (virtualenv active)
Then start a tutorial. The Django documentations tutorial seemed to be very 
good until it segued into a long trites on API setup. Really annoying. I 
just wanted to get the basic system set up. That said, the official 
tutorial may still be your best bet. Good luck.

Gary R 


On Thursday, July 30, 2015 at 1:35:16 PM UTC-7, Steve Burrus wrote:
>
> * Say I was wondering if anyone else has ever read this particulkar Django 
> book called "Sams Teach Yourself Django in 24 Hours" I checked out of the 
> library yesterday? [yeah I know it's one of the "24 hours" series] Does it 
> really teach the beginner a lot of things concerning Django?*
>
>
>
>

-- 
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/5f6624d8-d7f5-47a5-9088-b528b16bbe7d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re. My Django Book.

2015-07-31 Thread sarfaraz ahmed
I am also looking for books which provide more of examples. The two scoops
of Django is more of doing things right than tutoring as MOnobot said. This
are the following things I want to learn in Django

I want to learn how to manually create form rather than creating modelform.
Combing forms from multiple models and show them under one view.

Rgards,
Sarfaraz Ahmed

On Fri, Jul 31, 2015 at 9:01 PM, monoBOT <monobot.s...@gmail.com> wrote:

> two scoops is more like ways of doing things right than really explaining
> or tutoring.
>
> 2015-07-31 15:33 GMT+01:00 Mark Phillips <m...@phillipsmarketing.biz>:
>
>> The django docs are excellent. However, if you are more of a book person,
>> then try Try Two Scoops of Django (http://twoscoopspress.org/) - well
>> written and updated.
>>
>> Mark
>>
>> On Fri, Jul 31, 2015 at 6:33 AM, rmschne <rmsc...@gmail.com> wrote:
>>
>>> I'm no way an advanced user, but I found the book simplistic and not
>>> worth it.  Django's own documentation is much better
>>> https://docs.djangoproject.com
>>>
>>> On Thursday, 30 July 2015 21:35:16 UTC+1, Steve Burrus wrote:
>>>>
>>>> * Say I was wondering if anyone else has ever read this particulkar
>>>> Django book called "Sams Teach Yourself Django in 24 Hours" I checked out
>>>> of the library yesterday? [yeah I know it's one of the "24 hours" series]
>>>> Does it really teach the beginner a lot of things concerning Django?*
>>>>
>>>>
>>>>
>>>>
>>> --
>>> 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/272afb4b-6e50-45be-92a8-4580049c3a3f%40googlegroups.com
>>> <https://groups.google.com/d/msgid/django-users/272afb4b-6e50-45be-92a8-4580049c3a3f%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>>> 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/CAEqej2PGuSBiLChgYu9jk%3DS_5otDK1WMeZsfJqYYjKTMXh0TSQ%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAEqej2PGuSBiLChgYu9jk%3DS_5otDK1WMeZsfJqYYjKTMXh0TSQ%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> *monoBOT*
> Visite mi sitio(Visit my site): monobotsoft.es/blog/
>
> --
> 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%2BxOsGAO8imS8%3D0OaDZiCGXFsWoyDs%3DCMtrAknd-gEqT8k0vqg%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CA%2BxOsGAO8imS8%3D0OaDZiCGXFsWoyDs%3DCMtrAknd-gEqT8k0vqg%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Thanks with regards,
Sarfaraz Ahmed

-- 
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/CAEPJdiyQ9kFw%2BxUNVYFyUqU%2BDBJ1UsyakdeP7fVvJHMevPSwCg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re. My Django Book.

2015-07-31 Thread monoBOT
two scoops is more like ways of doing things right than really explaining
or tutoring.

2015-07-31 15:33 GMT+01:00 Mark Phillips <m...@phillipsmarketing.biz>:

> The django docs are excellent. However, if you are more of a book person,
> then try Try Two Scoops of Django (http://twoscoopspress.org/) - well
> written and updated.
>
> Mark
>
> On Fri, Jul 31, 2015 at 6:33 AM, rmschne <rmsc...@gmail.com> wrote:
>
>> I'm no way an advanced user, but I found the book simplistic and not
>> worth it.  Django's own documentation is much better
>> https://docs.djangoproject.com
>>
>> On Thursday, 30 July 2015 21:35:16 UTC+1, Steve Burrus wrote:
>>>
>>> * Say I was wondering if anyone else has ever read this particulkar
>>> Django book called "Sams Teach Yourself Django in 24 Hours" I checked out
>>> of the library yesterday? [yeah I know it's one of the "24 hours" series]
>>> Does it really teach the beginner a lot of things concerning Django?*
>>>
>>>
>>>
>>>
>> --
>> 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/272afb4b-6e50-45be-92a8-4580049c3a3f%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/272afb4b-6e50-45be-92a8-4580049c3a3f%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>> 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/CAEqej2PGuSBiLChgYu9jk%3DS_5otDK1WMeZsfJqYYjKTMXh0TSQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAEqej2PGuSBiLChgYu9jk%3DS_5otDK1WMeZsfJqYYjKTMXh0TSQ%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
*monoBOT*
Visite mi sitio(Visit my site): monobotsoft.es/blog/

-- 
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%2BxOsGAO8imS8%3D0OaDZiCGXFsWoyDs%3DCMtrAknd-gEqT8k0vqg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re. My Django Book.

2015-07-31 Thread Mark Phillips
The django docs are excellent. However, if you are more of a book person,
then try Try Two Scoops of Django (http://twoscoopspress.org/) - well
written and updated.

Mark

On Fri, Jul 31, 2015 at 6:33 AM, rmschne <rmsc...@gmail.com> wrote:

> I'm no way an advanced user, but I found the book simplistic and not worth
> it.  Django's own documentation is much better
> https://docs.djangoproject.com
>
> On Thursday, 30 July 2015 21:35:16 UTC+1, Steve Burrus wrote:
>>
>> * Say I was wondering if anyone else has ever read this particulkar
>> Django book called "Sams Teach Yourself Django in 24 Hours" I checked out
>> of the library yesterday? [yeah I know it's one of the "24 hours" series]
>> Does it really teach the beginner a lot of things concerning Django?*
>>
>>
>>
>>
> --
> 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/272afb4b-6e50-45be-92a8-4580049c3a3f%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/272afb4b-6e50-45be-92a8-4580049c3a3f%40googlegroups.com?utm_medium=email_source=footer>
> .
>
> 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/CAEqej2PGuSBiLChgYu9jk%3DS_5otDK1WMeZsfJqYYjKTMXh0TSQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re. My Django Book.

2015-07-31 Thread rmschne
I'm no way an advanced user, but I found the book simplistic and not worth 
it.  Django's own documentation is much 
better https://docs.djangoproject.com

On Thursday, 30 July 2015 21:35:16 UTC+1, Steve Burrus wrote:
>
> * Say I was wondering if anyone else has ever read this particulkar Django 
> book called "Sams Teach Yourself Django in 24 Hours" I checked out of the 
> library yesterday? [yeah I know it's one of the "24 hours" series] Does it 
> really teach the beginner a lot of things concerning Django?*
>
>
>
>

-- 
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/272afb4b-6e50-45be-92a8-4580049c3a3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re. My Django Book.

2015-07-30 Thread Steve Burrus
* Say I was wondering if anyone else has ever read this particulkar Django 
book called "Sams Teach Yourself Django in 24 Hours" I checked out of the 
library yesterday? [yeah I know it's one of the "24 hours" series] Does it 
really teach the beginner a lot of things concerning Django?*


   

-- 
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/de78f7fa-cb87-4d88-a9c6-886f43841bb2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-23 Thread Preeti
The error was that it was missing a "comma" after 'staticfiles' entry in 
INSTALLED_APPS.

-- 
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/2d97db99-df21-4e8c-bf4f-73222f70ad80%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-23 Thread Gergely Polonkai
The error message is somewhat clear on this: there is no such module as
django.contrib.staticfilesdjango. The django at the end seems to be the
cause to me.
On 23 May 2015 20:19, "Preeti"  wrote:

> this is the error I find.. [kindly check the attachment]
>
> --
> 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/ebe2cbae-8313-4d7e-9f16-71941ede06f8%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/CACczBU%2B1N_73eT6DXprns2GwomDD7LmgC1X2-2-7Y6LmwFvB%3DA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-23 Thread Preeti
this is the error I find.. [kindly check the attachment]

-- 
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/ebe2cbae-8313-4d7e-9f16-71941ede06f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how shall I built online address book using Django

2015-05-23 Thread Thomas Rega
http://lmgtfy.com/?q=django+for+beginners

Good Luck

2015-05-22 17:53 GMT+02:00 Preeti <gaganpri...@gmail.com>:
> I donot want that people do homework for me or create the app for me.
>
> I referred to that djangoproject.com tutorials  for two days, but for
> creating the app I didnt find it much resourceful.
>
> I wanted few more good links from where I can understand django a better way
> to built my app.
>
> thanks
>
>
> On Friday, May 22, 2015 at 8:29:00 PM UTC+5:30, C. Kirby wrote:
>>
>> I think people here will be happy to help if you have specific questions,
>> but don't really want to do your homework for you.
>>
>> If you need to learn about how django works, and how you can start to
>> think about building this application, I recommend doing the tutorial at:
>> https://docs.djangoproject.com/en/1.8/intro/tutorial01/
>>
>> On Friday, May 22, 2015 at 1:19:58 AM UTC-5, Preeti wrote:
>>>
>>> I have to create an address book using django
>>> it should contain two modules-user and admin
>>>
>>> the user is allowed to write his/her first name/last name, add the
>>> picture, lists the social media links, should add a 4-digit PIN .
>>>
>>> the other user can use that 4-digit PIN to add a particular contact in
>>> his list.
>>>
>>> I'm using Django 1.8, python 3.3
>>> and the database I prefer is MySql
>>>
>>> Please guide how can I proceed with my application..
>
> --
> 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/9f0baa31-f87a-42d4-adff-d7fd17799bc5%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/CAFgu0xj7AQZqHTF%2BpK9zjeS%3DT4B-dDq3wugj16d_19sXdzOb3w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-22 Thread Gergely Polonkai
You say that your backend is ready. Does this mean you have created your
models and can access them from the shell (pythen manage.py shell, see the
first chapter of the tutorial, section Playing with the API)?

If so, what parts of the frontend creation you don't understand? Is it view
creation or templates, or maybe something else?
On 23 May 2015 08:09, "Preeti"  wrote:

> Hi James,
>
> I started learning Django this week.
> My code isn't on Github.
>
>  I learnt building the app, and the backend work but I'm not able to
> understand how to connect front-end with the framework.
>
> I have enclosed a copy of what I want in my app. Please go through it, and
> guide.
>
> Thanks
>
> On Friday, May 22, 2015 at 9:51:05 PM UTC+5:30, James Brewer wrote:
>>
>> Hey Preeti,
>>
>> Glad you're getting into Django! It's a fantastic framework. (I'm kind of
>> biased.)
>>
>> With that said, we need more information to know how to help you. What
>> have you tried? Is your code available on Github? The "Where do I start?"
>> question is too broad for anyone to give an answer more effective than
>> "read the docs".
>>
>> Happy Friday!
>>
>> 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/0f1d0d85-2aa7-4790-b721-5a217cfae32c%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/CACczBU%2BjskmoLbkC9UKAa4CzH25%2BSiwzBYt_VGStLTNu2YTCEA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-22 Thread Preeti
Hi James,

I started learning Django this week. 
My code isn't on Github.

 I learnt building the app, and the backend work but I'm not able to 
understand how to connect front-end with the framework.

I have enclosed a copy of what I want in my app. Please go through it, and 
guide.

Thanks

On Friday, May 22, 2015 at 9:51:05 PM UTC+5:30, James Brewer wrote:
>
> Hey Preeti,
>
> Glad you're getting into Django! It's a fantastic framework. (I'm kind of 
> biased.)
>
> With that said, we need more information to know how to help you. What 
> have you tried? Is your code available on Github? The "Where do I start?" 
> question is too broad for anyone to give an answer more effective than 
> "read the docs".
>
> Happy Friday!
>
> 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/0f1d0d85-2aa7-4790-b721-5a217cfae32c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-22 Thread James Brewer
Hey Preeti,

Glad you're getting into Django! It's a fantastic framework. (I'm kind of
biased.)

With that said, we need more information to know how to help you. What have
you tried? Is your code available on Github? The "Where do I start?"
question is too broad for anyone to give an answer more effective than
"read the docs".

Happy Friday!

James

On Fri, May 22, 2015 at 8:58 AM, Preeti <gaganpri...@gmail.com> wrote:

> Hi Gergely,
>
> thanks for replying back!
>
> I followed tutorials on djangoprojects.com but I haven't found it much
> resourceful for creating my app.
>
> Therefore, I seek to get help for some newer links to understand Django a
> better way.
>
>
> On Friday, May 22, 2015 at 11:50:00 AM UTC+5:30, Preeti wrote:
>>
>> I have to create an address book using django
>> it should contain two modules-user and admin
>>
>> the user is allowed to write his/her first name/last name, add the
>> picture, lists the social media links, should add a 4-digit PIN .
>>
>> the other user can use that 4-digit PIN to add a particular contact in
>> his list.
>>
>> I'm using Django 1.8, python 3.3
>> and the database I prefer is MySql
>>
>> Please guide how can I proceed with my application..
>>
>  --
> 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/cd3b8bef-9785-4a44-9eae-57181bb4c6f8%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/cd3b8bef-9785-4a44-9eae-57181bb4c6f8%40googlegroups.com?utm_medium=email_source=footer>
> .
> 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/CAFryp_gEwmeiZak4yjGzPzbc%3D3orUf_3ji9c1mctp6PMsEDOFw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-22 Thread Preeti
Hi Gergely, 

thanks for replying back!

I followed tutorials on djangoprojects.com but I haven't found it much 
resourceful for creating my app.

Therefore, I seek to get help for some newer links to understand Django a 
better way.


On Friday, May 22, 2015 at 11:50:00 AM UTC+5:30, Preeti wrote:
>
> I have to create an address book using django
> it should contain two modules-user and admin
>
> the user is allowed to write his/her first name/last name, add the 
> picture, lists the social media links, should add a 4-digit PIN .
>
> the other user can use that 4-digit PIN to add a particular contact in his 
> list.
>
> I'm using Django 1.8, python 3.3
> and the database I prefer is MySql
>
> Please guide how can I proceed with my application.. 
>

-- 
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/cd3b8bef-9785-4a44-9eae-57181bb4c6f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how shall I built online address book using Django

2015-05-22 Thread Preeti
I donot want that people do homework for me or create the app for me.

I referred to that djangoproject.com tutorials  for two days, but for 
creating the app I didnt find it much resourceful.

I wanted few more good links from where I can understand django a better 
way to built my app.

thanks

On Friday, May 22, 2015 at 8:29:00 PM UTC+5:30, C. Kirby wrote:
>
> I think people here will be happy to help if you have specific questions, 
> but don't really want to do your homework for you.
>
> If you need to learn about how django works, and how you can start to 
> think about building this application, I recommend doing the tutorial at:
> https://docs.djangoproject.com/en/1.8/intro/tutorial01/
>
> On Friday, May 22, 2015 at 1:19:58 AM UTC-5, Preeti wrote:
>>
>> I have to create an address book using django
>> it should contain two modules-user and admin
>>
>> the user is allowed to write his/her first name/last name, add the 
>> picture, lists the social media links, should add a 4-digit PIN .
>>
>> the other user can use that 4-digit PIN to add a particular contact in 
>> his list.
>>
>> I'm using Django 1.8, python 3.3
>> and the database I prefer is MySql
>>
>> Please guide how can I proceed with my application.. 
>>
>

-- 
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/9f0baa31-f87a-42d4-adff-d7fd17799bc5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how shall I built online address book using Django

2015-05-22 Thread C. Kirby
I think people here will be happy to help if you have specific questions, 
but don't really want to do your homework for you.

If you need to learn about how django works, and how you can start to think 
about building this application, I recommend doing the tutorial at:
https://docs.djangoproject.com/en/1.8/intro/tutorial01/

On Friday, May 22, 2015 at 1:19:58 AM UTC-5, Preeti wrote:
>
> I have to create an address book using django
> it should contain two modules-user and admin
>
> the user is allowed to write his/her first name/last name, add the 
> picture, lists the social media links, should add a 4-digit PIN .
>
> the other user can use that 4-digit PIN to add a particular contact in his 
> list.
>
> I'm using Django 1.8, python 3.3
> and the database I prefer is MySql
>
> Please guide how can I proceed with my application.. 
>

-- 
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/205d36ff-8e9e-4dea-a9f6-85c4f8bdfd75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Address book using django

2015-05-22 Thread Gergely Polonkai
Hello,

besides that it sounds like a homework to me, I don't see why you need an
admin module, as Django already has one.

For everything else, if you walk through the tutorial app, you should get
most of the ideas from there.

Best,
Gergely
On 22 May 2015 09:19, "Preeti" <gaganpri...@gmail.com> wrote:

> I have to create an address book using django
> it should contain two modules-user and admin
>
> the user is allowed to write his/her first name/last name, add the
> picture, lists the social media links, should add a 4-digit PIN .
>
> the other user can use that 4-digit PIN to add a particular contact in his
> list.
>
> I'm using Django 1.8, python 3.3
> and the database I prefer is MySql
>
> Please guide how can I proceed with my application..
>
> --
> 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/849c3f71-c5ad-4b62-b9d6-0012505a2201%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/849c3f71-c5ad-4b62-b9d6-0012505a2201%40googlegroups.com?utm_medium=email_source=footer>
> .
> 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/CACczBUJZfk%3D33nFmQrnDHosn3xUEgBXn_ZL7cz%2BTb7pGLrCy5A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


how shall I built online address book using Django

2015-05-22 Thread Preeti
I have to create an address book using django
it should contain two modules-user and admin

the user is allowed to write his/her first name/last name, add the picture, 
lists the social media links, should add a 4-digit PIN .

the other user can use that 4-digit PIN to add a particular contact in his 
list.

I'm using Django 1.8, python 3.3
and the database I prefer is MySql

Please guide how can I proceed with my application.. 

-- 
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/3d31ab5d-a01e-43c8-966a-61997c8dc1e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Address book using django

2015-05-22 Thread Preeti
I have to create an address book using django
it should contain two modules-user and admin

the user is allowed to write his/her first name/last name, add the picture, 
lists the social media links, should add a 4-digit PIN .

the other user can use that 4-digit PIN to add a particular contact in his 
list.

I'm using Django 1.8, python 3.3
and the database I prefer is MySql

Please guide how can I proceed with my application.. 

-- 
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/849c3f71-c5ad-4b62-b9d6-0012505a2201%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [GeoDjango] Re: "Beginning Geo Django: Rich Gis Web Applications With Python" Where can I get the book?

2014-03-19 Thread Michael Savarese
That's a good book for all things GIS/Python as well as a GeoDjango example.

These links may help out also. They use Leaflet
<http://leafletjs.com/>instead of the GeoDjango built-in OpenLayers

https://github.com/makinacorpus/django-leaflet

http://blog.mathieu-leplatre.info/geodjango-maps-with-leaflet.html


On Wed, Mar 19, 2014 at 8:34 AM, Max Demars <burton449...@gmail.com> wrote:

> Hi Alex,
>
> I cannot help you with this book in particular, but I could suggest
> another book that helped me a lot.
>
> Python Geospatial Development by Erik Westra
>
> -Max Demars
>
>
> On Tuesday, March 18, 2014 11:49:49 AM UTC-4, Alex wrote:
>
>> Thats an interesting dilemma. I just looked around a no one has copies.
>> The publisher says "The eBook version of this title will be available
>> soon"
>> http://www.springer.com/computer/book/978-1-4302-2532-4
>>
>> But I have no idea how long it's said that.
>>
>> This appears to be the ISBN for the printed version 9781430225317
>> Some searches show it on back order at every store.
>>
>> So yes it seems limited quantities and no eBook version yet. Maybe
>> contact Apress and ask when the eBook will be available.
>>
>> Thanks,
>> Alex
>>
>> FYI: I'm forwarding this to the Geodjango mailing list, you might want
>> to join it and ask more there. geod...@googlegroups.com
>>
>> On 03/16/2014 07:43 PM, ruomu sh wrote:
>> > Yes I understand. But I could not figure out how can I get it here at
>> > Nepal. I will buy it. I find different price listed on internet. Some
>> site
>> > say it is out of stock. Is it published only limited copies?
>> >
>> > On Friday, February 21, 2014 6:47:20 PM UTC+5:45, Tom Evans wrote:
>> >>
>> >> On Fri, Feb 21, 2014 at 10:15 AM, Ram Shrestha <sendma...@gmail.com>
>> >> wrote:
>> >>> Dear All,
>> >>> I am want to learn GeoDjango in real world application. I believe
>> this
>> >> book
>> >>> "Beginning Geo Django: Rich Gis Web Applications With Python" is the
>> >> best
>> >>> book for me. But I could not download download it.
>> >>>
>> >>> If anyone have this book Please share the book with me. Where can I
>> get
>> >> it
>> >>> for free!
>> >>
>> >> If the author or publisher does not make this book available as a free
>> >> download, it is not appropriate to use this list to try to pirate it.
>> >>
>> >> Doing so discourages future authors and publishers from writing books
>> >> about Django.
>> >>
>> >>
>> >> Cheers
>> >>
>> >> Tom
>> >>
>> >
>>
>>  --
> You received this message because you are subscribed to the Google Groups
> "geodjango" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to geodjango+unsubscr...@googlegroups.com.
> To post to this group, send email to geodja...@googlegroups.com.
> Visit this group at http://groups.google.com/group/geodjango.
> 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/CANhS580%3Dy5D016MPHsHnm%2B9fidRQJZao06%2BmOp2NfxoF3h17rw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: "Beginning Geo Django: Rich Gis Web Applications With Python" Where can I get the book?

2014-03-19 Thread Max Demars
Hi Alex,

I cannot help you with this book in particular, but I could suggest another 
book that helped me a lot.

Python Geospatial Development by Erik Westra

-Max Demars

On Tuesday, March 18, 2014 11:49:49 AM UTC-4, Alex wrote:
>
> Thats an interesting dilemma. I just looked around a no one has copies. 
> The publisher says "The eBook version of this title will be available 
> soon" 
> http://www.springer.com/computer/book/978-1-4302-2532-4 
>
> But I have no idea how long it's said that. 
>
> This appears to be the ISBN for the printed version 9781430225317 
> Some searches show it on back order at every store. 
>
> So yes it seems limited quantities and no eBook version yet. Maybe 
> contact Apress and ask when the eBook will be available. 
>
> Thanks, 
> Alex 
>
> FYI: I'm forwarding this to the Geodjango mailing list, you might want 
> to join it and ask more there. geod...@googlegroups.com  
>
> On 03/16/2014 07:43 PM, ruomu sh wrote: 
> > Yes I understand. But I could not figure out how can I get it here at 
> > Nepal. I will buy it. I find different price listed on internet. Some 
> site 
> > say it is out of stock. Is it published only limited copies? 
> > 
> > On Friday, February 21, 2014 6:47:20 PM UTC+5:45, Tom Evans wrote: 
> >> 
> >> On Fri, Feb 21, 2014 at 10:15 AM, Ram Shrestha 
> >> <sendma...@gmail.com> 
>
> >> wrote: 
> >>> Dear All, 
> >>> I am want to learn GeoDjango in real world application. I believe this 
> >> book 
> >>> "Beginning Geo Django: Rich Gis Web Applications With Python" is the 
> >> best 
> >>> book for me. But I could not download download it. 
> >>> 
> >>> If anyone have this book Please share the book with me. Where can I 
> get 
> >> it 
> >>> for free! 
> >> 
> >> If the author or publisher does not make this book available as a free 
> >> download, it is not appropriate to use this list to try to pirate it. 
> >> 
> >> Doing so discourages future authors and publishers from writing books 
> >> about Django. 
> >> 
> >> 
> >> Cheers 
> >> 
> >> Tom 
> >> 
> > 
>
>

-- 
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/aa515ed2-9e2b-4b91-924e-dc34e374d8c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: "Beginning Geo Django: Rich Gis Web Applications With Python" Where can I get the book?

2014-03-18 Thread Alex Mandel
Thats an interesting dilemma. I just looked around a no one has copies.
The publisher says "The eBook version of this title will be available soon"
http://www.springer.com/computer/book/978-1-4302-2532-4

But I have no idea how long it's said that.

This appears to be the ISBN for the printed version 9781430225317
Some searches show it on back order at every store.

So yes it seems limited quantities and no eBook version yet. Maybe
contact Apress and ask when the eBook will be available.

Thanks,
Alex

FYI: I'm forwarding this to the Geodjango mailing list, you might want
to join it and ask more there. geodja...@googlegroups.com

On 03/16/2014 07:43 PM, ruomu sh wrote:
> Yes I understand. But I could not figure out how can I get it here at 
> Nepal. I will buy it. I find different price listed on internet. Some site 
> say it is out of stock. Is it published only limited copies?
> 
> On Friday, February 21, 2014 6:47:20 PM UTC+5:45, Tom Evans wrote:
>>
>> On Fri, Feb 21, 2014 at 10:15 AM, Ram Shrestha <sendmail4...@gmail.com> 
>> wrote: 
>>> Dear All, 
>>> I am want to learn GeoDjango in real world application. I believe this 
>> book 
>>> "Beginning Geo Django: Rich Gis Web Applications With Python" is the 
>> best 
>>> book for me. But I could not download download it. 
>>>
>>> If anyone have this book Please share the book with me. Where can I get 
>> it 
>>> for free! 
>>
>> If the author or publisher does not make this book available as a free 
>> download, it is not appropriate to use this list to try to pirate it. 
>>
>> Doing so discourages future authors and publishers from writing books 
>> about Django. 
>>
>>
>> Cheers 
>>
>> Tom 
>>
> 

-- 
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/53286B1D.6020507%40wildintellect.com.
For more options, visit https://groups.google.com/d/optout.


Re: "Beginning Geo Django: Rich Gis Web Applications With Python" Where can I get the book?

2014-03-16 Thread ruomu sh
Yes I understand. But I could not figure out how can I get it here at 
Nepal. I will buy it. I find different price listed on internet. Some site 
say it is out of stock. Is it published only limited copies?

On Friday, February 21, 2014 6:47:20 PM UTC+5:45, Tom Evans wrote:
>
> On Fri, Feb 21, 2014 at 10:15 AM, Ram Shrestha <sendmail4...@gmail.com> 
> wrote: 
> > Dear All, 
> > I am want to learn GeoDjango in real world application. I believe this 
> book 
> > "Beginning Geo Django: Rich Gis Web Applications With Python" is the 
> best 
> > book for me. But I could not download download it. 
> > 
> > If anyone have this book Please share the book with me. Where can I get 
> it 
> > for free! 
>
> If the author or publisher does not make this book available as a free 
> download, it is not appropriate to use this list to try to pirate it. 
>
> Doing so discourages future authors and publishers from writing books 
> about Django. 
>
>
> Cheers 
>
> Tom 
>

-- 
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/4b73bce8-63fb-4eec-8725-b446bfbe7eb5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: "Beginning Geo Django: Rich Gis Web Applications With Python" Where can I get the book?

2014-02-21 Thread Sandro Dutra
Buy the book and don't be fool!


2014-02-21 10:02 GMT-03:00 Tom Evans <tevans...@googlemail.com>:

> On Fri, Feb 21, 2014 at 10:15 AM, Ram Shrestha <sendmail4...@gmail.com>
> wrote:
> > Dear All,
> > I am want to learn GeoDjango in real world application. I believe this
> book
> > "Beginning Geo Django: Rich Gis Web Applications With Python" is the best
> > book for me. But I could not download download it.
> >
> > If anyone have this book Please share the book with me. Where can I get
> it
> > for free!
>
> If the author or publisher does not make this book available as a free
> download, it is not appropriate to use this list to try to pirate it.
>
> Doing so discourages future authors and publishers from writing books
> about Django.
>
>
> Cheers
>
> Tom
>
> --
> 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/CAFHbX1KcDx05ebasmcJFdEaumVm6Wf4Gxmc23DNobjCnz5ZPBQ%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
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/CAH%2Bpf9%3DNkG9-5Q%3D_MpPB43MXEJ%3Dc_uUzRRQbVWnhiQB78jSzFA%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: "Beginning Geo Django: Rich Gis Web Applications With Python" Where can I get the book?

2014-02-21 Thread Tom Evans
On Fri, Feb 21, 2014 at 10:15 AM, Ram Shrestha <sendmail4...@gmail.com> wrote:
> Dear All,
> I am want to learn GeoDjango in real world application. I believe this book
> "Beginning Geo Django: Rich Gis Web Applications With Python" is the best
> book for me. But I could not download download it.
>
> If anyone have this book Please share the book with me. Where can I get it
> for free!

If the author or publisher does not make this book available as a free
download, it is not appropriate to use this list to try to pirate it.

Doing so discourages future authors and publishers from writing books
about Django.


Cheers

Tom

-- 
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/CAFHbX1KcDx05ebasmcJFdEaumVm6Wf4Gxmc23DNobjCnz5ZPBQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


"Beginning Geo Django: Rich Gis Web Applications With Python" Where can I get the book?

2014-02-21 Thread Ram Shrestha
Dear All,
I am want to learn GeoDjango in real world application. I believe this book 
"Beginning Geo Django: Rich Gis Web Applications With Python" is the best 
book for me. But I could not download download it. 

If anyone have this book Please share the book with me. Where can I get it 
for free! 

-- 
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/128e65b9-5e30-49e8-b142-f1901f992a96%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Free Book: Test-Driven Development with Python

2014-02-09 Thread waverider
The "Test-Driven Development with Python" book uses Django for its code 
examples.

And it's free: http://chimera.labs.oreilly.com/books/123400754
(at least during this pre-release phase)

-- 
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/7d9d2f2b-027b-4b67-afd8-a62cab6e0399%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to build the Django book?

2013-11-10 Thread Russell Keith-Magee
On Mon, Nov 11, 2013 at 1:42 AM, Dennis Lee Bieber <wlfr...@ix.netcom.com>wrote:

> On Sun, 10 Nov 2013 11:11:06 +0200, voger <vogernewslett...@yahoo.gr>
> declaimed the following:
>
> >> The Django Book is written in using Sphinx. Sphinx is a tool you can
> >> install from PyPI --
> >>
> >> pip install sphinx
> >>
> >> Once you've got Sphinx installed, you can use "make" to control the
> >> build; run
> >>
> >> make html
> >>
>
> Slipping into the thread...
>
> Now do you have a compatible make utility for Windows? Without
> having
> to install a whole UNIX clone environment.
>
> Neither the M$ Visual Studio Visual C nmake nor GNAT Ada gnatmake
> like
> the Makefile (nmake complains about a $ in macro, gnatmake objects to #
> comment lines and _xxx names)
>

There isn't one in the djangobook repository, but there is a Sphinx
make.bat file in the Django repository, and it's fairly generic. I haven't
tried this, but you'll probably find that the make.bat file in django/docs
can be used, or can be used with some very minor modifications.

Yours,
Russ Magee %-)

-- 
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/CAJxq849EpRk0zxofw8xPWc4BaVmv%3DkiSSZTpxN7oQnU9R-7_QA%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to build the Django book?

2013-11-10 Thread voger

On 11/10/2013 12:57 AM, Russell Keith-Magee wrote:


On Sun, Nov 10, 2013 at 12:05 AM, voger <vogernewslett...@yahoo.gr
<mailto:vogernewslett...@yahoo.gr>> wrote:

    The django book was my first contact with django but as the website
itself states it is way out of date (covering django 1.0 and
mentioning here and there 1.4). The same website suggests their
github page

https://github.com/jacobian/__djangobook.com
<https://github.com/jacobian/djangobook.com>

  where the book updates are work in progress attempting to keep it
up to date with more recent versions of Django. The thing is, how do
    I read this book? How can I compile the code to produce helpful
readable format? I am using Linux.


Hi Voger,

The Django Book is written in using Sphinx. Sphinx is a tool you can
install from PyPI --

pip install sphinx

Once you've got Sphinx installed, you can use "make" to control the
build; run

make html

to make a HTML target; the front page of the book will be put in
_build/html/index.html.

You can also build epub, texinfo, and a variety of other formats if you
need to.

Yours,
Russ Magee %-)



Thanks. It worked. :)

--
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/527F4DAA.6010603%40yahoo.gr.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to build the Django book?

2013-11-09 Thread Russell Keith-Magee
On Sun, Nov 10, 2013 at 12:05 AM, voger <vogernewslett...@yahoo.gr> wrote:

> The django book was my first contact with django but as the website itself
> states it is way out of date (covering django 1.0 and mentioning here and
> there 1.4). The same website suggests their github page
>
> https://github.com/jacobian/djangobook.com
>
>  where the book updates are work in progress attempting to keep it up to
> date with more recent versions of Django. The thing is, how do I read this
> book? How can I compile the code to produce helpful readable format? I am
> using Linux.


Hi Voger,

The Django Book is written in using Sphinx. Sphinx is a tool you can
install from PyPI --

pip install sphinx

Once you've got Sphinx installed, you can use "make" to control the build;
run

make html

to make a HTML target; the front page of the book will be put in
_build/html/index.html.

You can also build epub, texinfo, and a variety of other formats if you
need to.

Yours,
Russ Magee %-)

-- 
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/CAJxq848ppVJWH7WPWrU24Sy8mLAT5tMYR-FHRfrEYrNPB4B7kg%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


How to build the Django book?

2013-11-09 Thread voger
The django book was my first contact with django but as the website 
itself states it is way out of date (covering django 1.0 and mentioning 
here and there 1.4). The same website suggests their github page


https://github.com/jacobian/djangobook.com

 where the book updates are work in progress attempting to keep it up 
to date with more recent versions of Django. The thing is, how do I read 
this book? How can I compile the code to produce helpful readable 
format? I am using Linux.


--
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/527E5D2E.4070702%40yahoo.gr.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Hello everyone, can you tell me a good django's book that explains the various functions but at the same time develop a complete website chapter by chapter?

2013-05-09 Thread Russell Keith-Magee
I wouldn't be *too* concerned about the version numbers covered by books.
Django has a strict backwards compatibility policy, specifically so that
code will continue to work between versions. We've added features, and
fixed bugs, but we've tried very hard to ensure that code will continue to
work between versions.

To that end, a tutorial that worked on Django 1.0 will work *almost*
entirely out of the box for Django 1.5. There are some exceptions, but
they're pretty well documented in the Django release notes. Off the top of
my head, the only changes you're likely to catch in a tutorial situation
are:

 * A change in the way you deploy admin (introduced in Django 1.1). If the
tutorial says to register your admin urls using "(r'^admin/(.*)',
admin.site.root),", you'll need to replace this with "(r'^admin/',
include(admin.site.urls)),"

 * A change in the use of quotation marks in the {% url %} tag (introduced
in Django 1.3). If your tutorial instructs you to put {% url name-of-view
%} in a template, you will need to use {% url "name-of-view" %} instead.

 * A subtle change in the default project layout (introduced in Django
1.4). Django 1.4 introduced a subdirectory for some project-level settings.
The changes should be fairly obvious.

 * A handful of changes to specific settings (e.g., database settings),
made over various versions. For example, the DATABASE_NAME setting in
Django 1.0 was renamed to be a 'NAME' key in a dictionary of settings in
Django 1.2.

I might have missed a couple of other changes, depending on the tutorial
you're following, but these should be the big ones.

That said, your best bet will always be to download the version of Django
that matches your tutorial; once you've got the tutorial working, you can
try upgrading versions until you're up to date. When Django introduces a
backwards incompatible change, we also introduce warnings and errors to
notify the user that these changes are happening; so, for example, if you
had a tutorial that was working under Django 1.1, and you updated your
Django install to 1.3, you would start to see warnings about the format of
your database settings.

Yours,
Russ Magee %-)

On Thu, May 9, 2013 at 5:03 PM, Federico Erbea <kyuby1...@gmail.com> wrote:

> Thanks but there isn't something more new, maybe make with django 1.4?
>
> Il giorno giovedì 9 maggio 2013 10:56:17 UTC+2, Federico Erbea ha scritto:
>
>> I bought a Marco Beri's book "Sviluppare applicazioni web con django" but
>> after the first chapter only explains the different functions in
>> contrast to the first chapter where the functions were explained by
>> developing them.
>> I also bought "Instant Django Application Development 
>> Starter<http://books.google.it/books?id=7Ebmb9UpCycC=PA14=Instant+Django+Application+Development+Starter=it=X=hmOLUY7PMpPe7AaTpYGoCw=0CDYQ6AEwAA>"
>> of Mauro Rocco, 
>> "<https://groups.google.com/forum/Definitive%20Guide%20to%20Django:%20Web%20Development%20Done%20Right>Definitive
>> Guide to Django: Web Development Done 
>> Right"<http://books.google.it/books?id=Gpr7J7-FFmwC=frontcover=Definitive+Guide+to+Django:+Web+Development+Done+Right=it=X=qGOLUYmYN6ro7AbXn4DIDw=0CD0Q6AEwAA>of
>>  Holovaty
>> Adrian and "Pro 
>> Django<http://books.google.it/books/about/Pro_Django.html?id=lJwOcsZq5g4C_esc=y>"
>> of Alchin Marty.
>> I have not read the last three, think reflect my request or do you know
>> of the best and most related.
>>
>  --
> 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?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Hello everyone, can you tell me a good django's book that explains the various functions but at the same time develop a complete website chapter by chapter?

2013-05-09 Thread Federico Erbea
Thanks but there isn't something more new, maybe make with django 1.4?

Il giorno giovedì 9 maggio 2013 10:56:17 UTC+2, Federico Erbea ha scritto:
>
> I bought a Marco Beri's book "Sviluppare applicazioni web con django" but 
> after the first chapter only explains the different functions in contrast 
> to the first chapter where the functions were explained by developing them.
> I also bought "Instant Django Application Development 
> Starter<http://books.google.it/books?id=7Ebmb9UpCycC=PA14=Instant+Django+Application+Development+Starter=it=X=hmOLUY7PMpPe7AaTpYGoCw=0CDYQ6AEwAA>"
>  
> of Mauro Rocco, 
> "<https://groups.google.com/forum/Definitive%20Guide%20to%20Django:%20Web%20Development%20Done%20Right>Definitive
>  
> Guide to Django: Web Development Done 
> Right"<http://books.google.it/books?id=Gpr7J7-FFmwC=frontcover=Definitive+Guide+to+Django:+Web+Development+Done+Right=it=X=qGOLUYmYN6ro7AbXn4DIDw=0CD0Q6AEwAA>of
>  Holovaty 
> Adrian and "Pro 
> Django<http://books.google.it/books/about/Pro_Django.html?id=lJwOcsZq5g4C_esc=y>"
>  
> of Alchin Marty.
> I have not read the last three, think reflect my request or do you know of 
> the best and most related.
>

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Hello everyone, can you tell me a good django's book that explains the various functions but at the same time develop a complete website chapter by chapter?

2013-05-09 Thread Gerald Klein
Besides the great documentation and examples on the Django site I would
look at http://www.djangobook.com/en/2.0/index.html

You also bought three more books take a look at them before buying more, if
you are just starting though I would start with the docs on the site and
the link I have provided.

thanks

--jerry


On Thu, May 9, 2013 at 3:56 AM, Federico Erbea <kyuby1...@gmail.com> wrote:

> I bought a Marco Beri's book "Sviluppare applicazioni web con django" but
> after the first chapter only explains the different functions in contrast
> to the first chapter where the functions were explained by developing them.
> I also bought "Instant Django Application Development 
> Starter<http://books.google.it/books?id=7Ebmb9UpCycC=PA14=Instant+Django+Application+Development+Starter=it=X=hmOLUY7PMpPe7AaTpYGoCw=0CDYQ6AEwAA>"
> of Mauro Rocco, 
> "<https://groups.google.com/forum/Definitive%20Guide%20to%20Django:%20Web%20Development%20Done%20Right>Definitive
> Guide to Django: Web Development Done 
> Right"<http://books.google.it/books?id=Gpr7J7-FFmwC=frontcover=Definitive+Guide+to+Django:+Web+Development+Done+Right=it=X=qGOLUYmYN6ro7AbXn4DIDw=0CD0Q6AEwAA>of
>  Holovaty
> Adrian and "Pro 
> Django<http://books.google.it/books/about/Pro_Django.html?id=lJwOcsZq5g4C_esc=y>"
> of Alchin Marty.
> I have not read the last three, think reflect my request or do you know of
> the best and most related.
>
> --
> 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?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>



-- 

Gerald Klein DBA

contac...@geraldklein.com

www.geraldklein.com <http://geraldklein.com/>

geraldklein.wordpress.com

j...@zognet.com

708-599-0352


Arch Awesome, Ranger & Vim the coding triple threat.

Linux registered user #548580

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Hello everyone, can you tell me a good django's book that explains the various functions but at the same time develop a complete website chapter by chapter?

2013-05-09 Thread Federico Erbea
I bought a Marco Beri's book "Sviluppare applicazioni web con django" but 
after the first chapter only explains the different functions in contrast 
to the first chapter where the functions were explained by developing them.
I also bought "Instant Django Application Development 
Starter<http://books.google.it/books?id=7Ebmb9UpCycC=PA14=Instant+Django+Application+Development+Starter=it=X=hmOLUY7PMpPe7AaTpYGoCw=0CDYQ6AEwAA>"
 
of Mauro Rocco, 
"<https://groups.google.com/forum/Definitive%20Guide%20to%20Django:%20Web%20Development%20Done%20Right>Definitive
 
Guide to Django: Web Development Done 
Right"<http://books.google.it/books?id=Gpr7J7-FFmwC=frontcover=Definitive+Guide+to+Django:+Web+Development+Done+Right=it=X=qGOLUYmYN6ro7AbXn4DIDw=0CD0Q6AEwAA>of
 Holovaty 
Adrian and "Pro 
Django<http://books.google.it/books/about/Pro_Django.html?id=lJwOcsZq5g4C_esc=y>"
 
of Alchin Marty.
I have not read the last three, think reflect my request or do you know of 
the best and most related.

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: New book: Instant Django 1.5 Application Development Starter

2013-04-08 Thread Mauro Rocco
Thank you

On Friday, April 5, 2013 8:27:34 PM UTC+2, megaBos wrote:
>
> good job

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




New book: Instant Django 1.5 Application Development Starter

2013-04-05 Thread megaBos
good job

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: New book: Instant Django 1.5 Application Development Starter

2013-04-05 Thread Navid Shaikh


On Friday, April 5, 2013 1:44:47 PM UTC+5:30, Mauro Rocco wrote:
>
> Hi everybody,
> I just wrote a book to get started with Django and I really hope that the 
> book will drive more developers to use Django and increase the success that 
> this great framework is already having. 
> Thanks also to PacktPublishing that aims to help sustain the projects 
> which it publishes books on by paying royalties to them. 
> I just want to make clear that this book is for real beginners and for 
> that doesn't touch any best practices and advanced topics. Due also to 
> Packt rules this book was really restricted to the minimum useful content 
> for let the reader start with Django.
>
> Here you found the book in different formats: 
> http://www.packtpub.com/django-1-5-application-development-starter/book
>  (Amazon,Safari)
>
> Thanks
>
> Mauro
>

Congratulations. :)

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




New book: Instant Django 1.5 Application Development Starter

2013-04-05 Thread Mauro Rocco
Hi everybody,
I just wrote a book to get started with Django and I really hope that the 
book will drive more developers to use Django and increase the success that 
this great framework is already having. 
Thanks also to PacktPublishing that aims to help sustain the projects which 
it publishes books on by paying royalties to them. 
I just want to make clear that this book is for real beginners and for that 
doesn't touch any best practices and advanced topics. Due also to Packt 
rules this book was really restricted to the minimum useful content for let 
the reader start with Django.

Here you found the book in different formats: 
http://www.packtpub.com/django-1-5-application-development-starter/book
 (Amazon,Safari)

Thanks

Mauro

-- 
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?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Source code from book djangobook.com ?

2013-01-15 Thread Russell Keith-Magee
Hi,

Do you mean the source code for the book (i.e., the code that is used to
produce the book), or the Python/Django code that the book provides as
examples?

If you're looking for the former, it's linked from the djangobook.comhomepage.

https://github.com/jacobian/djangobook.com

If you're looking for all the code snippets, I'm not aware of anywhere of
anywhere that these snippets are available for download (other than to use
the book as a resource and copy/paste the snippets from the appropriate
chapters).

This is because the snippets are all relatively small, so they're easy to
retype. Also, most of the code comes in the form of snippets, rather than
standalone projects, so it would be difficult to index and store them in a
meaningful way.

Yours,
Russ Magee %-)

On Wed, Jan 16, 2013 at 1:44 PM, Subodh Nijsure <subodh.nijs...@gmail.com>wrote:

> Sorry if this is a very obvious question does any body know if source code
> from the online book http://www.djangobook.com/ is available some where
> in git repo? I have searched on github and most hits are for actual book
> chapters.
>
> -Subodh
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Source code from book djangobook.com ?

2013-01-15 Thread Iñigo Medina
On Tue, Jan 15, 2013 at 09:44:56PM -0800, Subodh Nijsure wrote:
> Sorry if this is a very obvious question does any body know if source code
> from the online book http://www.djangobook.com/ is available some where in
> git repo? I have searched on github and most hits are for actual book
> chapters.

Official repo is at: https://github.com/jacobian/djangobook.com

Recent thread on this mailing list about its status:
https://groups.google.com/forum/?fromgroups=#!searchin/django-users/book/django-users/f1H68hiMIKU/overview

Iñigo

> 
> -Subodh
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Source code from book djangobook.com ?

2013-01-15 Thread Subodh Nijsure
Sorry if this is a very obvious question does any body know if source code
from the online book http://www.djangobook.com/ is available some where in
git repo? I have searched on github and most hits are for actual book
chapters.

-Subodh

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Status of open sourced Django Book?

2013-01-14 Thread Lachlan Musicman
On Tue, Jan 15, 2013 at 5:55 AM, Skip Montanaro <skip.montan...@gmail.com>wrote:

> book (or tutorials).  I'm rummage through the release notes and see what I
> come up with.
>
> Or are new useful features more likely to be found in contributed
> apps/modules?  If so, how do I browse that environment?  Is there some sort
> of announce list where new toys tend to pop up?
>

Not really, there is the dev list - but you would need to scan it.

I would recommend the Release Notes - in those you will find the full list
of deprecations, backwards incompatible cchanges and new toys, with links
to documentation where necessary

https://docs.djangoproject.com/en/dev/releases/

Cheers
L.




-- 
...we look at the present day through a rear-view mirror. This is something
Marshall McLuhan said back in the Sixties, when the world was in the grip
of authentic-seeming future narratives. He said, “We look at the present
through a rear-view mirror. We march backwards into the future.”

http://www.warrenellis.com/?p=14314

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Status of open sourced Django Book?

2013-01-14 Thread Skip Montanaro


> If you do go through the release notes for 1.1,  1.2, 1.3 and 1.4, you 
> shouldn't find *that* many backwards incompatibilities.
>

Thanks.  I wasn't actually all that worried about incompatibilities.  I was 
more worried about interesting new features in later versions which aren't 
discussed in the book (or tutorials).  I'm rummage through the release 
notes and see what I come up with.

Or are new useful features more likely to be found in contributed 
apps/modules?  If so, how do I browse that environment?  Is there some sort 
of announce list where new toys tend to pop up?

Skip

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/_WzCBd6aImsJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Status of open sourced Django Book?

2013-01-13 Thread Russell Keith-Magee
On Mon, Jan 14, 2013 at 1:13 AM, Skip Montanaro <skip.montan...@gmail.com>wrote:

> I was encouraged to see that the Django Book authors had open-sourced the
> book.  I cloned the git repo and built it.  I've been working my way
> through the online book and thought the open source content might have some
> updates, but after comparing a couple chapters (intro and Chapter 11), it
> seems that perhaps nothing has been updated.
>
> Did I just make too small a comparison?  Are the various versions' release
> notes the only places to find summaries of what's changed since the book
> was written (for 1.1)?
>

Essentially, yes. To the best of my knowledge, there haven't been any major
changes to the Django Book since it was originally published. One of the
reasons for releasing the book as open source was to allow (and encourage)
the community to submit updates. I'm pretty certain that there weren't that
many updates prior to the book source being put on GitHub, so the Github
commit history will show you all the changes that have been made.

If you do go through the release notes for 1.1,  1.2, 1.3 and 1.4, you
shouldn't find *that* many backwards incompatibilities. Off the top of my
head, I can only think of a few items that would make a significant
difference to the content of the Django book:

 * Import syntax at the top of urls.py
 * Quoting syntax in {% url %} tags
 * The method of installing admin urls
 * Allowing for CSRF in forms

There have been other backwards incompatibilities, but they tend to be
fairly esoteric edge cases; there have also been lots of additional
features, which means the current content of the Django book may not
reflect best practice (e.g., the syntax of {% if %} clauses in templates).
However, as a project, we've been strict about backwards compatibility, so
there shouldn't be much that doesn't work *at all*.

That said, we would certainly welcome any contributions to help get the
Django Book up to date, reflecting current best practice, and ironing out
the incompatibilities that have emerged over time.

Yours,
Russ Magee %-)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Status of open sourced Django Book?

2013-01-13 Thread Skip Montanaro
I was encouraged to see that the Django Book authors had open-sourced the 
book.  I cloned the git repo and built it.  I've been working my way 
through the online book and thought the open source content might have some 
updates, but after comparing a couple chapters (intro and Chapter 11), it 
seems that perhaps nothing has been updated.

Did I just make too small a comparison?  Are the various versions' release 
notes the only places to find summaries of what's changed since the book 
was written (for 1.1)?

Thanks,

Skip Montanaro

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/IEwXTib2UMkJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django book example HELP..

2012-12-13 Thread Chris Cogdon
Typo on that typo! That slash should also be inside the parenthesis:

(r'^time/plus/(\d{1,2})/$', hours_ahead)

Note, though, I tend not to be so specific with URL matching... consider if 
someone hacked a URL to read time/plus/999/ ... The above will cause a 404, 
where letting it through to your code, with something like (\d+) gives you 
the opportunity to respond instead with something more specific to the 
error, such as redirecting to a "sensible default" along with a message. 
The "correct behavior" depends on your application design.


On Thursday, December 13, 2012 1:32:30 AM UTC-8, 向浩 wrote:
>
> (r'^time/plus/\d{1,2}/$', hours_ahead),this line,you should use () for 
> d{1,2}
> (r'^time/plus/\(d{1,2})/$', hours_ahead)  
>
> 在 2011年2月18日星期五UTC+8下午11时04分13秒,Dipo Elegbede写道:
>>
>> Hi all,
>>
>> i am currently reading the django book and following the examples step by 
>> step.
>>
>> I have a view defined as follows:
>>
>> from django.http import Http404, HttpResponse
>> import datetime
>>
>> #def myhome(request):
>> #message = """
>> #MY HOME
>> #
>> #
>> #This is my 
>> way of 
>> saying welcome!
>> #
>> #
>> # 
>> #"""
>> #return HttpResponse(message)
>> #
>> #def hello(request):
>> #return HttpResponse("Hello World")
>> #
>> #def current_time(request):
>> #now = datetime.datetime.now()
>> #html = "It is now %s." % now
>> #return HttpResponse(html)
>> 
>> def hours_ahead(request, offset):
>> try:
>> offset = int(offset)
>> except ValueError:
>> raise Http404()
>> dt = datetime.datetime.now() + datetime.timedelta(hours=offset)
>> html = "In %s hour(s), it will be %s." % 
>> (offset, dt)
>> return HttpResponse(html)
>>
>> (All the commented area work just fine )
>>
>> and I have a url.py like this:
>>
>> from django.conf.urls.defaults import *
>> from mysite.views import *
>> from django.contrib import admin
>> admin.autodiscover()
>>
>> urlpatterns = patterns('',
>> (r'^$', myhome),
>> (r'^polls/', include('mysite.polls.urls')),
>> (r'^hello/$', hello),
>> (r'^time/$', current_time),
>> (r'^time/plus/\d{1,2}/$', hours_ahead),
>> )
>>
>> when i try to run localhost:8000/time/plus/3, I get the following error:
>>
>> TypeError at /time/plus/4/
>> hours_ahead() takes exactly 2 arguments (1 given)
>> Request Method: GET
>> Request URL: http://localhost:8000/time/plus/4/
>> Django Version: 1.2.1
>> Exception Type: TypeError
>> Exception Value: 
>> hours_ahead() takes exactly 2 arguments (1 given)
>> Exception Location: 
>> c:\Python26\lib\site-packages\django-1.2.1-py2.6.egg\django\core\handlers\base.py
>>  
>> in get_response, line 100
>> Python Executable: c:\Python26\python.exe
>> Python Version: 2.6.4
>> Python Path: ['c:\\users\\owner\\desktop\\djtask\\mysite', 
>> 'c:\\Python26\\lib\\site-packages\\django-1.2.1-py2.6.egg', 
>> 'c:\\Python26\\lib\\site-packages\\pip-0.8.2-py2.6.egg', 
>> 'C:\\Windows\\system32\\python26.zip', 'c:\\Python26\\DLLs', 
>> 'c:\\Python26\\lib', 'c:\\Python26\\lib\\plat-win', 
>> 'c:\\Python26\\lib\\lib-tk', 'c:\\Python26', 
>> 'c:\\Python26\\lib\\site-packages', 
>> 'c:\\Python26\\lib\\site-packages\\PIL', 
>> 'c:\\Python26\\lib\\site-packages\\wx-2.8-msw-unicode']
>> Server time: Fri, 18 Feb 2011 15:51:57 +0100
>>
>> My understanding of the error message is that I supplied, 1 argument when 
>> the view function, hours_ahead was expecting 2 but really, i don't have a 
>> hang of where to put the other argument. I am following the examples in the 
>> book.
>>
>> I must be missing something, kindly help me out.
>>
>> thank you.
>>  
>>
>>
>>
>>
>>
>>
>> -- 
>> Elegbede Muhammed Oladipupo
>> OCA
>> +2348077682428
>> +2347042171716
>> www.dudupay.com
>> Mobile Banking Solutions | Transaction Processing | Enterprise 
>> Application Development
>>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/u9IUohV8fWsJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django book example HELP..

2012-12-13 Thread 向浩
(r'^time/plus/\d{1,2}/$', hours_ahead),this line,you should use () for 
d{1,2}
(r'^time/plus/\(d{1,2})/$', hours_ahead)  

在 2011年2月18日星期五UTC+8下午11时04分13秒,Dipo Elegbede写道:
>
> Hi all,
>
> i am currently reading the django book and following the examples step by 
> step.
>
> I have a view defined as follows:
>
> from django.http import Http404, HttpResponse
> import datetime
>
> #def myhome(request):
> #message = """
> #MY HOME
> #
> #
> #This is my 
> way of 
> saying welcome!
> #
> #
> # 
> #"""
> #return HttpResponse(message)
> #
> #def hello(request):
> #return HttpResponse("Hello World")
> #
> #def current_time(request):
> #now = datetime.datetime.now()
> #html = "It is now %s." % now
> #return HttpResponse(html)
> 
> def hours_ahead(request, offset):
> try:
> offset = int(offset)
> except ValueError:
> raise Http404()
> dt = datetime.datetime.now() + datetime.timedelta(hours=offset)
> html = "In %s hour(s), it will be %s." % 
> (offset, dt)
> return HttpResponse(html)
>
> (All the commented area work just fine )
>
> and I have a url.py like this:
>
> from django.conf.urls.defaults import *
> from mysite.views import *
> from django.contrib import admin
> admin.autodiscover()
>
> urlpatterns = patterns('',
> (r'^$', myhome),
> (r'^polls/', include('mysite.polls.urls')),
> (r'^hello/$', hello),
> (r'^time/$', current_time),
> (r'^time/plus/\d{1,2}/$', hours_ahead),
> )
>
> when i try to run localhost:8000/time/plus/3, I get the following error:
>
> TypeError at /time/plus/4/
> hours_ahead() takes exactly 2 arguments (1 given)
> Request Method: GET
> Request URL: http://localhost:8000/time/plus/4/
> Django Version: 1.2.1
> Exception Type: TypeError
> Exception Value: 
> hours_ahead() takes exactly 2 arguments (1 given)
> Exception Location: 
> c:\Python26\lib\site-packages\django-1.2.1-py2.6.egg\django\core\handlers\base.py
>  
> in get_response, line 100
> Python Executable: c:\Python26\python.exe
> Python Version: 2.6.4
> Python Path: ['c:\\users\\owner\\desktop\\djtask\\mysite', 
> 'c:\\Python26\\lib\\site-packages\\django-1.2.1-py2.6.egg', 
> 'c:\\Python26\\lib\\site-packages\\pip-0.8.2-py2.6.egg', 
> 'C:\\Windows\\system32\\python26.zip', 'c:\\Python26\\DLLs', 
> 'c:\\Python26\\lib', 'c:\\Python26\\lib\\plat-win', 
> 'c:\\Python26\\lib\\lib-tk', 'c:\\Python26', 
> 'c:\\Python26\\lib\\site-packages', 
> 'c:\\Python26\\lib\\site-packages\\PIL', 
> 'c:\\Python26\\lib\\site-packages\\wx-2.8-msw-unicode']
> Server time: Fri, 18 Feb 2011 15:51:57 +0100
>
> My understanding of the error message is that I supplied, 1 argument when 
> the view function, hours_ahead was expecting 2 but really, i don't have a 
> hang of where to put the other argument. I am following the examples in the 
> book.
>
> I must be missing something, kindly help me out.
>
> thank you.
>  
>
>
>
>
>
>
> -- 
> Elegbede Muhammed Oladipupo
> OCA
> +2348077682428
> +2347042171716
> www.dudupay.com
> Mobile Banking Solutions | Transaction Processing | Enterprise Application 
> Development
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/0JzOg3kl8aMJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Can i use django book

2012-07-28 Thread Tomas Neme
While the things on the djangobook are probably still compatible,
they're far of being best practices nowadays, and will lead you down
old and abandoned roads, more times than not.

As it's been said, I'd rather stay by the official docs, they're very
clear and pretty helpful, not purely technical  at all.

-- 
"The whole of Japan is pure invention. There is no such country, there
are no such people" --Oscar Wilde

|_|0|_|
|_|_|0|
|0|0|0|

(\__/)
(='.'=)This is Bunny. Copy and paste bunny
(")_(") to help him gain world domination.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Can i use django book

2012-07-28 Thread Rafael E. Ferrero
maybe you must to read djangoprouect.com docs... has a nice and short
tutorial and a very deep documentation of almos every aspect and version of
django.


2012/7/28 Russell Keith-Magee <russ...@keith-magee.com>

> Hi
>
> Django has a very strong backwards compatibility policy, so even
> though the book is old, most of the core functionality should be the
> same. There will be *some* differences, though, so if you start seeing
> errors, looking for the relevant section in the official documentation
> should help point you at what has changed and how to adapt.
>
> Yours,
> Russ Magee %-)
>
> On Sat, Jul 28, 2012 at 6:10 PM, ACK-Django <aniketkadam1...@gmail.com>
> wrote:
> > hi i m new to django and i have installed django1.4
> > so can i use this book http://www.djangobook.com/en/2.0/
> > but its little old, so people tell me its there any drawback of using
> this
> > book
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Django users" group.
> > To view this discussion on the web visit
> > https://groups.google.com/d/msg/django-users/-/eko4ZRM1AvEJ.
> > To post to this group, send email to django-users@googlegroups.com.
> > To unsubscribe from this group, send email to
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/django-users?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>


-- 
Rafael E. Ferrero
Claro: (03562) 15514856

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Can i use django book

2012-07-28 Thread Russell Keith-Magee
Hi

Django has a very strong backwards compatibility policy, so even
though the book is old, most of the core functionality should be the
same. There will be *some* differences, though, so if you start seeing
errors, looking for the relevant section in the official documentation
should help point you at what has changed and how to adapt.

Yours,
Russ Magee %-)

On Sat, Jul 28, 2012 at 6:10 PM, ACK-Django <aniketkadam1...@gmail.com> wrote:
> hi i m new to django and i have installed django1.4
> so can i use this book http://www.djangobook.com/en/2.0/
> but its little old, so people tell me its there any drawback of using this
> book
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/eko4ZRM1AvEJ.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Can i use django book

2012-07-28 Thread kenneth gonsalves
On Sat, 2012-07-28 at 03:10 -0700, ACK-Django wrote:
> hi i m new to django and i have installed django1.4
> so can i use this book http://www.djangobook.com/en/2.0/
> but its little old, so people tell me its there any drawback of using
> this book 

better to do the tutorial in the docs.
-- 
regards
Kenneth Gonsalves

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Can i use django book

2012-07-28 Thread ACK-Django
hi i m new to django and i have installed django1.4
so can i use this book http://www.djangobook.com/en/2.0/
but its little old, so people tell me its there any drawback of using this 
book

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/eko4ZRM1AvEJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Django Book In Persian

2012-07-04 Thread Amin Oruji
Django Book site in Persian langage launched.

www.djangobook.ir

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: outdated django book

2012-04-29 Thread Reinout van Rees

On 29-04-12 21:24, knowledge_seeker wrote:

On Friday, April 27, 2012 7:09:32 PM UTC-7, knowledge_seeker wrote:

My Django book (from the university library) said to add the label
"@login_required" to views that I wish to restrict user access on.
Django 1.4 does not allow this; obviously the book is dated! Is there
a more modern way to get the same effect?


Perhaps your @login_required error was also an forgot-to-import-it 
error. But it also might be because you're using a class based view.


If so, look for the 'decorators' heading in the following link:
http://www.caktusgroup.com/blog/2011/12/29/class-based-views-django-13/

You need to decorate the dispatch() method in the class-based-view case.


Reinout

--
Reinout van Reeshttp://reinout.vanrees.org/
rein...@vanrees.org http://www.nelen-schuurmans.nl/
"If you're not sure what to do, make something. -- Paul Graham"

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: outdated django book

2012-04-29 Thread knowledge_seeker
Thanks for the help guys; I am glad the books were not so out of date!

On Friday, April 27, 2012 7:09:32 PM UTC-7, knowledge_seeker wrote:
>
> My Django book (from the university library) said to add the label 
> "@login_required" to views that I wish to restrict user access on. 
> Django 1.4 does not allow this; obviously the book is dated! Is there 
> a more modern way to get the same effect? 
>
> Similarly, admin does not allow access to my classes, even when I have 
> created an Admin class; is this a new security feature? 
>
> Finally, when I tried to create a view that allowed web-based user 
> creation, the views.py file would not recognize the class "User"; is 
> there something I need to import?


On Friday, April 27, 2012 7:09:32 PM UTC-7, knowledge_seeker wrote:
>
> My Django book (from the university library) said to add the label 
> "@login_required" to views that I wish to restrict user access on. 
> Django 1.4 does not allow this; obviously the book is dated! Is there 
> a more modern way to get the same effect? 
>
> Similarly, admin does not allow access to my classes, even when I have 
> created an Admin class; is this a new security feature? 
>
> Finally, when I tried to create a view that allowed web-based user 
> creation, the views.py file would not recognize the class "User"; is 
> there something I need to import?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/nV5rR7liHNYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: outdated django book

2012-04-28 Thread Jonathan Baker
Ah yes, I should have clarified that in my response. @knowledge_seeker, if
you'll check your python code with a tool like
pyflakes<http://pypi.python.org/pypi/pyflakes>it will tell you when
you're referencing modules that have not been
imported (as well as many other common errors). I use the pyflakes for vim
plugin <http://www.vim.org/scripts/script.php?script_id=2441> and it saves
me from a ton of headaches.

On Sat, Apr 28, 2012 at 2:14 AM, Daniel Roseman <dan...@roseman.org.uk>wrote:

> Which, of course, is nothing to do with Django versions, and was true even
> when the Django book was new.
>
>
> On Saturday, 28 April 2012 03:30:26 UTC+1, jondbaker wrote:
>
>> You need to import User from django.contrib.auth.models and
>> login_required from django.contrib.auth.**decorators. Hope this helps.
>>
>> Sent from my iPhone
>>
>> On Apr 27, 2012, at 8:09 PM, knowledge_seeker wrote:
>>
>> > My Django book (from the university library) said to add the label
>> > "@login_required" to views that I wish to restrict user access on.
>> > Django 1.4 does not allow this; obviously the book is dated! Is there
>> > a more modern way to get the same effect?
>> >
>> > Similarly, admin does not allow access to my classes, even when I have
>> > created an Admin class; is this a new security feature?
>> >
>> > Finally, when I tried to create a view that allowed web-based user
>> > creation, the views.py file would not recognize the class "User"; is
>> > there something I need to import?
>>
>>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/6ExeXS4aUn8J.
>
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
Jonathan D. Baker
Developer
http://jonathandbaker.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: outdated django book

2012-04-28 Thread Daniel Roseman
Which, of course, is nothing to do with Django versions, and was true even 
when the Django book was new.

On Saturday, 28 April 2012 03:30:26 UTC+1, jondbaker wrote:
>
> You need to import User from django.contrib.auth.models and login_required 
> from django.contrib.auth.decorators. Hope this helps. 
>
> Sent from my iPhone 
>
> On Apr 27, 2012, at 8:09 PM, knowledge_seeker wrote: 
>
> > My Django book (from the university library) said to add the label 
> > "@login_required" to views that I wish to restrict user access on. 
> > Django 1.4 does not allow this; obviously the book is dated! Is there 
> > a more modern way to get the same effect? 
> > 
> > Similarly, admin does not allow access to my classes, even when I have 
> > created an Admin class; is this a new security feature? 
> > 
> > Finally, when I tried to create a view that allowed web-based user 
> > creation, the views.py file would not recognize the class "User"; is 
> > there something I need to import? 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/6ExeXS4aUn8J.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: outdated django book

2012-04-27 Thread Jonathan D. Baker
You need to import User from django.contrib.auth.models and login_required from 
django.contrib.auth.decorators. Hope this helps.

Sent from my iPhone

On Apr 27, 2012, at 8:09 PM, knowledge_seeker <sanjivchristop...@gmail.com> 
wrote:

> My Django book (from the university library) said to add the label
> "@login_required" to views that I wish to restrict user access on.
> Django 1.4 does not allow this; obviously the book is dated! Is there
> a more modern way to get the same effect?
> 
> Similarly, admin does not allow access to my classes, even when I have
> created an Admin class; is this a new security feature?
> 
> Finally, when I tried to create a view that allowed web-based user
> creation, the views.py file would not recognize the class "User"; is
> there something I need to import?
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



  1   2   3   4   5   >