我的 django.views 有问题 我的代码是
模板
<!doctype html>
<html>
<h1>{{userName}} twoje wycieczki : </h1>
<a href ="">Dodaj wycieczke>></a>
</html>
带有 url 标签的基本 html 模板。
我的意见.py
def tripList(request):
user = request.user
print user.username
tList = Trip.objects.filter(userId = user.id)
return render_to_response('tripList.html',{'userName' : user.username}, context_instance = RequestContext(request))
还有 urls.py
from django.conf.urls import patterns, url
from views import *
urlpatterns = patterns('',
url(r'^createTrip/$', createTrip, name = 'createTrip'),)
但我得到错误
没有名为 django.views 的模块
异常位置:/var/src/Django-1.4.2/django/utils/importlib.py in import_module,第 35 行
而且我不知道出了什么问题,因为我在 settings.py 中包含了 django.views 并且在我的 python 控制台中也可以导入 django.views 所以有 django.views
我不知道出了什么问题。我有其他带有 url 标签的视图,但没有这样的错误。也许有人有简单的问题。提前致谢。