Files
muzak/playlist/templates/background.css
T
2024-02-21 15:49:44 +01:00

10 lines
245 B
CSS

{% load static %}
body {
{% if background.image %}
background-image: url('{{background.image.url}}');
{% if not background.repeat %}background-repeat: no-repeat;{% endif %}
{% else %}
background-color: {{background.color}};
{% endif %}
}