Skip to content

Tag: django

no such table: wagtailcore_site

I’m hosting two websites on ubuntu server and both having postgresql, the first one is working prefect but the second give me this error no such table: wagtailcore_site Request Method: GET Django Version: 2.2.10 Exception Type: OperationalError Exception Value: no such table: wagtailcore_site Exception …

putting a pandas dataframe inside a django template

I want to put a pandas dataframe inside a django template. For instance I want something like this: What I have tried are these codes. First in my django views.py, this was my function: The template is: And, the style.css is: Apparently, when I check it in my browser the template is loaded with the CSS code c…