0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Djangoの管理者サイトの表示が崩れてしまっている

Posted at

とりあえず忘れないうちに
体裁は後で修正

urls.pyを以下のようにして

from django.contrib import admin
from django.urls import path
#以下を追加
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
from django.urls import include

urlpatterns = [
path('admin/', admin.site.urls),
]

一番下の行に以下を追加
urlpatterns += staticfiles_urlpatterns()

理由はわからないけどこれで治った!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?