On Sep 8, 9:16 pm, KillaBee <[EMAIL PROTECTED]> wrote: > I keep getting this error on this view named timesheets, the code > looks like this.
<snip tons of irrelevant code> > > ViewDoesNotExist: Could not import intraweb.apps.timesheets.views. > Error was: cannot import name entrys The traceback quite clearly states that the error is in timesheets.views, but you've just given us timesheets.models. In your views.py you're obviously doing something like from intraweb.apps.timesheets.models import entrys, but there's no such model - there is only one called Entry. So import that instead. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

