[Answered ]-Facing relation "base_post" does not exist LINE 1: …, "base_post"."featured", "base_post"."slug" FROM "base_post… issue. Can anybody help me?

1👍

I guess it works on your computer,but not in heroku. It may be problem with data base.
Try to makemigrations and migrate. Check that this base post is exist in data base in development.
You could try to add some exception in html, like:

{% if posts %}
    {% for post in posts %}
        <your code>
{% else %}
    <p>We have not any posts</p>
{% ednif %}

Leave a comment