i am trying to do a simple Django application where employee list is read from database and displayed. for that i defined the models and entered the values to database through Django admin. But while
I am trying to read some data from html forms and insert it into database. Doing so i am stuck with this error \"NameError at /createEmployee/ : global name \'get_post_param\' is not defined\" ; i wil
I have made an application in djnago and using pre made admin application of django with that.I have the following urlpatterns in my url.py file and its working fine.
I\'m having a trouble making a form work. As I see it, everything is fine, but is_valid() always returns False (I had to check it in shell mode, since in the template it doesn\'t show any errors). Am
models.py class Category(models.Model): name = models.CharField(max_length=50) class SubCatergory(models.Model):
models.py class Category(models.Model): name = models.CharField(max_length=开发者_StackOverflow200) slug = models.SlugField()
I have a Django view that processes a GET request. I want to rebuild the query string to include all variables except for one.
i am having an import error django_tables. Could not import ikapp.views.开发者_C百科admin. Error was: No module named django_tables.It looks like ikapp.views.admin requires django-tables. Unfortunatel
I have a formset that allows user to give multiple rewards to a user for donating to their project. If I land on the page and enter no info, submit I get a UnboundLocalError which seems strange since
Hello all you helpful people out there (and goodbye none-helpful people :D ). I\'m trying to create a user in django (1.2.4) and then log them in after saving them. My problem is I\'m getting NotImple