Best practice for utilizing vagrant and virtual env

2013-12-10 Thread Blake Adams
I am following the getting started with Django tutorial and managed to finish the 1st project but when I re-entered Vagrant SSH all packages i installed on my vagrant shared folder and my virtual environment were gone. I think it might be because virtual box has several different version of my

Get a memory profile for a django site?

2013-12-10 Thread Christopher Welborn
I have a small personal site that runs on django, it's not a money-maker, and doesn't get a lot of traffic. I'm not so much a web-developer as I am an all-around programming enthusiast. I would like to find out how much memory a certain page or template/view is using. I know how much the apache

Re: Writing your first Django app, part 1 (1.6)

2013-12-10 Thread Joey Chang
can you share more lines you typed before. It's hard to analysis depending on just one line 2013/12/11 Suhendri > Hi, > > I'm new in Django, I'm excited with Django so I have to following the > existing tutorial to knew how to create a program with Django. > > I started with tutorial 1, Writing

Re: Best way to learn Django considering Python versions and etc.

2013-12-10 Thread rettevhcirlu
Dear Bruce, being myself a Python programmer for more than 16 years I only recently started usind django when I was looking for a way to set up a web application. The reason for this choice is motivated by the positive experience I always had with Python and so I dived into Django. Now when it

Writing your first Django app, part 1 (1.6)

2013-12-10 Thread Suhendri
Hi, I'm new in Django, I'm excited with Django so I have to following the existing tutorial to knew how to create a program with Django. I started with tutorial 1, Writing your first Django app, part1. I used Django 1.6 and SQLite I followed the instructions from the starting of the tutorial,

Re: Best way to learn Django considering Python versions and etc.

2013-12-10 Thread Alex Mandel
On 12/10/2013 09:54 AM, Tom Evans wrote: > > It is slightly different to what I have described, Django has a > deprecation policy, features not pending deprecation in X.Y will work > in X.Y+1 and X.Y+2, features pending deprecation in X.Y will work in > X.Y+1 but not X.Y+2. This means that what co

Re: Best way to learn Django considering Python versions and etc.

2013-12-10 Thread Tom Evans
On Tue, Dec 10, 2013 at 4:57 PM, Bruce Whealton wrote: > Hello all, > So, I started looking at recommended reading on Django and a > couple books referred me to first go through "The Definitive Guide To > Django." I have to admit some concern about reading a book on Django that > is

Re: How do I test my Django App on my Phone

2013-12-10 Thread mulianto
Hi, I guest your django app will be a web app run in a browser inside your phone. For the easy way you can use your browser , in firefox open tools - web developer - responsive design view You can test your django app in some phone mode with available screen resolution preset and also rotate i

Best way to learn Django considering Python versions and etc.

2013-12-10 Thread Bruce Whealton
Hello all, So, I started looking at recommended reading on Django and a couple books referred me to first go through "The Definitive Guide To Django." I have to admit some concern about reading a book on Django that is some 5 plus years old. I've come to think of this as the infor

Re: I have a problem with wizard.

2013-12-10 Thread Rafael E. Ferrero
Good Work !! 2013/12/10 Olga Burdonova > I tested it with django 1.6 and 1.5 > > -- > 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...

Re: I have a problem with wizard.

2013-12-10 Thread Olga Burdonova
I tested it with django 1.6 and 1.5 -- 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

Re: I have a problem with wizard.

2013-12-10 Thread Olga Burdonova
Solved by overwriting some methods but I still thinking about better solution. class OrderWizard(SessionWizardView): template_name = "order/wizard.html" def get_form_key(self, step): return "wizard_" + self.prefix + str(step) def process_step(self, form): self.reque