我正在尝试hello.html
使用数据库查询中的列表生成一个选择菜单。
我的models.py
:
class hello(models.Model):
q = """
SELECT * FROM ZONAS
WHERE cod_zona = 1
"""
db.query(q)
nome = db.query(q)
title = models.CharField(max_length=3, choices=nome)
def __unicode__(self):
return self.name
和my views.py
:
def contato(request):
form = hello()
return render_to_response(
'hello.html',
locals(),
context_instance=RequestContext(request),
)
def hello_template(request):
form = hello()
t = get_template('hello.html')
html = t.render(Context({'name' : nome}))
return HttpResponse(html)
我被困在:ERROR testApp.hello: "title": "choices" should be a sequence of two-tuples.
任何帮助表示赞赏。