skip to Main Content

Django admin panel does not have a standard form I’m trying to deploy my site on VPS – debian 10, django 3.1, but the admin panel does not have a standard form [see the example in the picture] 1

2

Answers


  1. What do you mean by standard form? There were changes related to the admin panel in Django 3.1. For example there is a new tab at the left when you are viewing a model, that you can show/hide

    Check for the Django 3.1 release notes

    Login or Signup to reply.
  2. Ok, it’s probably related to static files (css, javascript, etc.), as you’re putting your site on production. Firstly, you need to check if you configured your STATIC_ROOT correctly. Then, you should configure your web server to serve this folder as explained here.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search