We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I run python3 manage.py migrate
RuntimeError: Model class puput.models.BlogPage doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
The text was updated successfully, but these errors were encountered:
I needed to have urls.py in the same folder as my app.
Sorry, something went wrong.
When I goto 127.0.0.1:8000/blog_admin I get 404.
Here's my mysite/tezos/settings/urls.py file:
from puput import urls as puput_urls urlpatterns = [ path("",include(puput_urls)), ]
No branches or pull requests
When I run python3 manage.py migrate
RuntimeError: Model class puput.models.BlogPage doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
The text was updated successfully, but these errors were encountered: