No module named django_dns.urls

2010-05-24 Thread Reino
I am a newbee to Django. I recently installed Django om my Centos 5.4 Linux box and created a projekt. Then I modified settings.py to suit my needs, and modified Apache's config file. I created the databases with default setting in setting.py and and created an application. It worked fine. I then c

Re: No module named django_dns.urls

2010-05-30 Thread Reino
Thanks for you reply Karen, It seems I messed someting up myself. I deleted the project and application, and recreated them from scratch, and now it works like a charm. Best wishes -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to thi

Django model question from a newbee

2010-12-16 Thread Reino
I am new to Django, and I am building a simple application where I am going to manage a legacy user database from Djangos admin interface. Below is how my model looks like. My goal is to hide some of the fields in the form where I edit/add users. However, currently I can see all the fields except

Re: Django model question from a newbee

2010-12-16 Thread Reino
; render_value=False), >                                 label=_("Password:")) > > 3.) Encrypting the password before storing it to the database is easy > by calling the right Django method: > User.objects.create_user(username, email, password) > > Hope this helps, &g