Bộ lọc mẫu tùy chỉnh sẽ giúp:
from django import template
register = template.Library()
@register.filter(name='private')
def private(obj, attribute):
return getattr(obj, attribute)
Bạn có thể sử dụng nó theo cách này:
{{ value|private:'_id' }}