This is sort of unrelated, but if you take a look at some of the sample apps out there (rietveld, gae-django-guestbook) they seem to place the "Forms" into the views code. You could avoid the import problem by doing this.
To address your problem in particular, do you have an __init.py__ inside your root level "myapp" directory? If you don't python won't be able to import from within it. On Sep 10, 1:46 pm, Peter <[EMAIL PROTECTED]> wrote: > Hi folks, > I'm trying to post some data from a form and then do something with > it. But I'm hitting issues. I'm using the django version that comes > with appengine. > > My models.py has > > from django import forms > > class MessageForm(forms.Form): > message = forms.TextField() > > and my views.py has > > from myapp.models import MessageForm > > This causes the app to crash with the error message > > Exception Type: ViewDoesNotExist > Exception Value: Tried message in module myapp.views. Error was: > 'module' object has no attribute 'Form' > > Any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
