新建一个tags.py
from django import template
register = template.Library()
def short_msg(value):
if len(value) > 50:
return value[:50]+" ......"
else:
return value
register.filter(‘short_msg‘, short_msg)
在html页面中
{% extends "base.html" %}
{% load message_tags %}
然后在使用的地方
{{ i.answer|short_msg }}
就完成了
原文地址:http://www.cnblogs.com/tuifeideyouran/p/3805475.html