How do I put a background image on the body in css with django using static?
Is it something like this? I can't find any information on this. Thanks.
{% load static %}
body {
padding: 0 20px;
background-image: url("{% static "assets/images/2.gif" %}");
}