Django Admin Svg images not loading in development mode

I am running Django 1.9 and I am missing a few admin icons, such as a magnifying glass for the search box, a calendar, and a clock for DateTimeFields . When checking an item, I see the following:

 <img src="/static/admin/img/search.svg" alt="Search"> 

I checked the file location and my svg files. I have only a static set of URLs.

 STATIC_URL = '/static/' 
+5
source share

Source: https://habr.com/ru/post/1239553/


All Articles