カスタムテンプレートフィルター> 役立つでしょう:
from django import template
register = template.Library()
@register.filter(name='private')
def private(obj, attribute):
return getattr(obj, attribute)
このように使用できます:
{{ value|private:'_id' }}
カスタムテンプレートフィルター> 役立つでしょう:
from django import template
register = template.Library()
@register.filter(name='private')
def private(obj, attribute):
return getattr(obj, attribute)
このように使用できます:
{{ value|private:'_id' }}