Search code examples
wagtailshared-hosting

Layout problems on Wagtail


I installing Wagtail on shared hosting. Instead of normal main and admin page there is view like that enter image description here


Solution

  • It looks like your static assets are not correctly built (CSS/JS).

    If you are running locally you may need to run the Django management command collectstatic.

    ./manage.py collectstatic
    

    If you are encountering this on the server, here are some relevant questions that may help.