orfplayer/frontend/templatetags/stations.py
2022-05-10 14:26:31 +02:00

10 lines
173 B
Python

from django.template import Library
from ..static import STATION_URLS
register = Library()
@register.simple_tag
def stationurl(station):
return STATION_URLS[station]