访问django模板中的列表项

时间:2015-03-10 02:35:38

标签: python django django-templates django-template-filters

我在视图中呈现的模板中有一个列表,rate_text ['', 'Disappointed', 'Not Promissing', 'OK', 'Good', 'Awesome']。我可以使用{{rate_text.index}}访问其中的任何项目,如下所示:

{% for review in reviews %}
<div class="panel panel-info" style='border-color:#ffffff;'>
    <div class="panel-heading" >
        <h3 class="panel-title lead">{{review.title}}</h3>
    </div>
    <div class="panel-body">
       <p class='text-center'>{{review.review}}</p>
       <h5 class='text-right'>-{{review.username}} ( {{review.email}} ) </h5>
       <h5 class='text-right'>Rating : {{rate_text.4}}</h5>
    </div>
</div>
<hr>
{% endfor %}

但是,我不想在{{rate_text.index}}中使用索引,而是使用{{review.rating}}作为索引。有什么方法可以做到这一点? 提前谢谢。

1 个答案:

答案 0 :(得分:1)

最佳选择是对rating字段使用choices属性:

RATING_CHOICES = list(enumerate(['', 'Disappointed', 'Not Promissing',
                                 'OK', 'Good', 'Awesome']))

class Review(models.Model):
    ...
    rating = models.IntegerField(..., choices=RATING_CHOICES)

然后在模板中使用它:

{{ review.get_index_display }}

另一种选择是使用custom template filter

@register.filter
def get_by_index(lst, idx):
    return lst[idx]

模板将如下所示:

{{ rate_text|get_by_index:review.rating }}