第一次使用django,需要一些帮助......
错误:
Reverse for 'anuncio' with arguments '(u'Restaurante Avenida',)' and keyword arguments '{}' not found.
请求方法:GET Django 版本:1.5.2 异常类型:NoReverseMatch 异常值:
未找到带有参数“(u'Restaurant Avenida',)”和关键字参数“{}”的“anuncio”的反向操作。
异常位置:/usr/local/lib/python2.7/dist-packages/django/template/defaulttags.py 在渲染中,第 424 行 Python 可执行文件:/usr/bin/python Python 版本:2.7.3
网址:
url(r'^anuncio/(?P<titulo>\d+)$', anuncio),
模板:
<a href="{% url 'anuncio' user.userprofile.anuncio %}"> {{user.userprofile.anuncio}} </a>
看法:
def anuncio(request, titulo):
Anuncio = Anuncio.objects.get(titulo = titulo)
variables = RequestContext(request, {'anuncio': Anuncio})
return render_to_response('anuncio.html', variables)