Merge "Fix PEP8 issues in the panel template"
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
from django.conf.urls import patterns
|
||||
from django.conf.urls import url
|
||||
|
||||
from .views import IndexView
|
||||
from {{ dash_path }}.{{ panel_name }}.views \
|
||||
import IndexView
|
||||
|
||||
|
||||
urlpatterns = patterns('',
|
||||
urlpatterns = patterns(
|
||||
'',
|
||||
url(r'^$', IndexView.as_view(), name='index'),
|
||||
)
|
||||
Reference in New Issue
Block a user