Ive been trying to get pages setup, but it hasn’t worked.
So I create a view, and render a home.html file, but it dosnt work.
What is the exact code for each urls?
Ive been trying to get pages setup, but it hasn’t worked.
So I create a view, and render a home.html file, but it dosnt work.
What is the exact code for each urls?
For further actions, you may consider blocking this person and/or reporting abuse
M -
akdevelop -
Olga Braginskaya -
Super Kai (Kazuya Ito) -
Top comments (7)
Hey Bret, it is a bit of a challenge to know exactly where you are stuck especially with no error messages. But I am going to give it a shot :)
There are different layers to get a .html page to render.
1) create a view ( which you said you have done )
2) make sure template name is home.html
3) add template path in your settings.py
4) point your apps URL to that. view within urlpatterns
5) include app url in your settings url
Hard to gauge at which point. above it is failing for you
In views I have:
Def homepage_view(request):
Return render(request, ‘homepage.html’)
and then also for about.
I have a homepage.html in my templates folder.
What are the imports in views.py do I need to do?
Hope this helps :)
Thank you! I watched “theNetNinja” and he never did anything with the dirs to have the os.path or anything. Don’t I just have to include templates [“templates”]?
Push what you have up to GitHub or something and I can help direct you better, it is a little tricky not knowing the structure of your files, to know where your templates are being looked up from.
To see if your app is registered in settings, URL conf included etc.
👋hi Bret, use the help tag to get more help. 😁
I just did all of that and it didn’t work. I don’t under why it’s so difficult to just have a simple route