Re: A really simple hosting for my Django app?

2013-06-15 Thread m1chael
amazon aws micro instance is free for 1 year i believe On Sat, Jun 15, 2013 at 3:58 PM, Enyert Viñas wrote: > On 06/15/2013 03:18 PM, Jonathan D. Baker wrote: > > Check out webfaction. They have a ton of documentation, great support and > it's only $10/mo. > > Sent from my iPhone > > On Jun 15

Re: A really simple hosting for my Django app?

2013-06-15 Thread Enyert Viñas
On 06/15/2013 03:18 PM, Jonathan D. Baker wrote: Check out webfaction. They have a ton of documentation, great support and it's only $10/mo. Sent from my iPhone On Jun 15, 2013, at 1:32 PM, thoms > wrote: Hi there! I just finished my first Django app that'

Re: A really simple hosting for my Django app?

2013-06-15 Thread Jonathan D. Baker
Check out webfaction. They have a ton of documentation, great support and it's only $10/mo. Sent from my iPhone On Jun 15, 2013, at 1:32 PM, thoms wrote: > Hi there! > > I just finished my first Django app that's working great locally. I have a > PHP background, and I'm already a big fan

A really simple hosting for my Django app?

2013-06-15 Thread thomaaaas
Hi there! I just finished my first Django app that's working great locally. I have a PHP background, and I'm already a big fan of Django :) Now I'm looking to host my new app online, but where and how? My only requirement: I want something *really simple*. I'm not a sysadmin, and I'm usually pre

Re: Importing the user.id in form.

2013-06-15 Thread shashank sandela
That worked. Thanks alot. -- 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-

Re: Importing the user.id in form.

2013-06-15 Thread Daniel Roseman
On Saturday, 15 June 2013 10:44:03 UTC+1, shashank sandela wrote: > Hi, > > I defined a model which has a 'ForeignKey' to the 'User' . > > models.py : > > *class Design(models.Model):* > * title = models.CharField(max_length=100)* > * designer=models.ForeignKey(User) > * > * description = models.T

django vagrant template and project start

2013-06-15 Thread Sven
Hi List, i only want to share with you some boilerplate stuff. Currently developing inside of virtualbox is very common, automatically build from vagrant and configured by puppet. Therefore i created a django project layout that creates all this from scratch. very handy. Check it out and i re

Re: User authentication with either username or email.

2013-06-15 Thread shashank sandela
This helped alot and solved the issue. 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, s

Importing the user.id in form.

2013-06-15 Thread shashank sandela
Hi, I defined a model which has a 'ForeignKey' to the 'User' . models.py : *class Design(models.Model):* * title = models.CharField(max_length=100)* * designer=models.ForeignKey(User) * * description = models.TextField(null = True)* * def __unicode__(self):* * return self.title* * * forms.py :