Form displays as textarea on local server, but text input on remote server

2011-04-04 Thread kelp
Hello, I have a form set up in the following way: from django.db import models from django import forms class ContactForm(forms.Form): subject = forms.CharField(max_length=100) message = forms.CharField(widget=forms.Textarea) sender = forms.EmailField() cc_myself =

Re: Installing Django on Ubuntu

2010-11-15 Thread kelp
lt;http://twitter.com/nnfish>psql:http://psql.info > > On Mon, Nov 15, 2010 at 4:54 PM, kelp <kelp...@gmail.com> wrote: > > Hello, > > So I have downloaded Django and put the folder into my /home/username/ > > directory, and I ran setup.py. I played with Django a little

Installing Django on Ubuntu

2010-11-15 Thread kelp
Hello, So I have downloaded Django and put the folder into my /home/username/ directory, and I ran setup.py. I played with Django a little bit, but it turns out that I haven't actually been using the newest, stable version of Django (1.2.3), but I have been using 1.1. The django I have been using

Re: Following Django Book, get NameError when accessing certain page

2010-05-02 Thread kelp
gt; On Sun, May 2, 2010 at 10:17 PM, kelp <kelp...@gmail.com> wrote: > > Hello, > > Thanks! That fixed the problem, but now I am getting another one. I am > > getting an AttributeError now: > >http://dpaste.com/190232/ > > Before the url pattern that r

Re: Following Django Book, get NameError when accessing certain page

2010-05-02 Thread kelp
wrote: > On Sun, May 2, 2010 at 8:41 PM, kelp <kelp...@gmail.com> wrote: > > Hello, I am trying to learn Django through the documentation: > >http://www.djangobook.com/en/2.0/chapter07/ > > > I am having a view issue, though. When I try to access > >http://1

Following Django Book, get NameError when accessing certain page

2010-05-02 Thread kelp
Hello, I am trying to learn Django through the documentation: http://www.djangobook.com/en/2.0/chapter07/ I am having a view issue, though. When I try to access http://127.0.0.1:8000/search-form/ after running my server, I get the following error: http://dpaste.com/190212/ Here is what I have in