django-crudbuilder
django-crudbuilder copied to clipboard
Custom urls routing
Hello.
I would like to have a control over routing of urls so they don't depend on names of apps and models. Is that possible ?
How about using custom_postfix_url
, which will allow you to add your custom url. You can Check this Example for custom url.
Feel free to close this when you don't have anymore questions.
Hi, I am a django beginner, but I am very glad I have come across your utility.
I agree however that the hardcoded appname-model-action
syntax is a bit limiting. For instance, if one's app's urls are namespaced like so:
url(r'^myapp/', include('myapp.urls', namespace='myapp'))
Then all the views inside that app will not be accessible via your url naming scheme.