Re: How to interpret error messages

2012-03-10 Thread arapaho
That just says that your Entry class inherits from the Model class, which is found in the models module. I am a relative noob also, and found a hard copy Django book was my best initial source. On Mar 10, 10:09 am, Rico wrote: > > Since you realize that the problem is in how you've registered the

Re: encrypt and decrypt data in django.

2011-10-05 Thread arapaho
The docs say to set up a table with a one-to-one relationship to the admin user table On Oct 5, 7:34 am, Le Huu Nghia wrote: > Dear All, > > i want to create a table to store information of user , > That includes (username , password, ...)  this table must be diffrent > from admin table. > (e

File Upload fails

2011-03-17 Thread arapaho
Hi, Please scratch the previous question--I found template errors were the cause. Thanks, Bob -- 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, s

File Upload fails

2011-03-17 Thread arapaho
Hi, Rather new to Django and using 1.2.5 and Windows, I am hung up trying to upload a file. I get a post request with request.FILES empty. My VIEW is: def intro(request): c = {} c.update(csrf(request)) if request.method == 'POST': #see if form submitted form = FileUploadFor