mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 05:07:50 +02:00
* Add a default card image when no custom one exists * Add coming_soon.png source * Use directly the svg source instead of the png raster
6 lines
131 B
Python
6 lines
131 B
Python
from django.conf import settings
|
|
|
|
|
|
def default_card_image(request):
|
|
return {"DEFAULT_CARD_IMAGE": settings.DEFAULT_CARD_IMAGE}
|