I am programming Django 1.5 with Python 2.7 on Windows Vista. I am trying to create user profiles. However, when I visit localhost: 8000 / admin / home / userprofile, I got 1146, "The table" demo.home_userprofile "does not exist. Now I have models.py :
from django.db import models from django.contrib.auth.models import User
And the Django page points to the not all arguments converted during string formatting error with me. This is a page that allows the user to upload an image and a phone number. What is the problem?
source share