如何通过django将多个类属性传递给模板?

时间:2011-09-16 04:04:23

标签: python html django templates

获取此错误: 例外价值:
无法解析余数:来自'contact.first_name + contact.last_name'的'+ contact.last_name'

我在显示名称列表时遇到问题,每个名称都作为链接。

我的models.py代码:

class Contact(models.Model):
    first_name = models.CharField("First Name", max_length=30)
    last_name = models.CharField("Last Name", max_length=30)

    def __unicode__(self):
        return u'%s %s' % (self.first_name, self.last_name)

我的views.py代码:

from django.http import HttpResponse
from pk.models import Contact
from django.template import Context, loader
from django.shortcuts import render_to_response

def index(request):
    contact_list = Contact.objects.all()
    return render_to_response('pk/index.html', {'contact_list': contact_list})

我的index.html模板:

{% if contact_list %}
<ul>
{% for contact in contact_list %}
    <li><a href="/pkl/{{ contact.id }}/">{{ contact.first_name + contact.last_name }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No contacts are available.</p>
{% endif %}

2 个答案:

答案 0 :(得分:4)

你可以这样做:

{{ contact.first_name }} {{ contact.last_name }}

Django不知道如何处理+,你不需要它。

答案 1 :(得分:0)

对于不太长的联系人列表, 例如:

def index(request):
contact_list = Contact.objects.all()
for  i in contact_list:
      contactlist.append(i.first_name + i.last_name)
return render_to_response('pk/index.html', {'contact_list': contactlist})