I am having trouble with how I would intuitively get my url patterns to work, by listing the actual path to the view function.
So it needs to be a callable, ok. But I don't like having 15+ from appname import views as appname_view.
I can add a url.py file in each app and use include(). But then in the app, I would do a relative view import and import all the functions to that module...
Is there a better way to do this? Am I missing something?
I am watching a tutorial on django 1.9...ha, that is my problem, I assumed I was working on 1.9. The latest, which is what I have installed, is 1.10.
My question still stands, would someone please share convention with me on the best way to do this?
Thank You.