Details
Description
e.g. how to create an app
http://cloudera.github.io/hue/latest/sdk/sdk.html#fast-guide-to-creating-a-new-hue-application
- url.py templates to change with the same logic as below
- Adding a migration ection to Hue 4.3 to http://cloudera.github.io/hue/latest/sdk/sdk.html
File "/home/romain/projects/hue/my_hue/src/my_hue/urls.py", line 18, in <module> from django.conf.urls import patterns, url ImportError: cannot import name patterns
from django.conf.urls import patterns, url urlpatterns = patterns('my_hue', url(r'^$', 'views.index'), )
-->
from django.conf.urls import url from my_hue import views urlpatterns = [ url(r'^$', views.index, name='index'), ]
Attachments
Issue Links
- relates to
-
HUE-8310 [core] Broken template for multiple custom apps
-
- Resolved
-