$ ls cbvApp/templatetags/
custFilters.py __init__.py
from django import template
register = template.Library()
@register.filter(name='extradash')
def extra_dash(value):
result = value + ' -------'
return result
<!-- index.html -->
{% load custFilters %}
{{ student.firstName | extradash}}