Error
The static resources in the admin management directory cannot be loaded. The specific reason is unknown.
Solution
Collecting static resources is required.
Reference resources
<code>在settings.py文件中添加STATIC_ROOT='/static/' 此目录必须为相对目录。 采用python manage.py collectstatic 搜集需要的静态资源,存放在STATIC_ROOT目录下面。 </code>
Configure the nginx server to support static resources.
Reference resources
<code>location /static { alias /var/www/my_blog/static; } </code>
The above introduces the interface deployment of Django using bootstrap-admin, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.