
Implements blueprint scaffolding. Using custom management commands you can now create the majority of the boilerplate code for a new dashboard or panel from a set of basic templates with a single command. See the docs for more info. Additionally, in support of the new commands (and inherent codified directory structure) there's a new template loader included which can load templates from "templates" directories in any registered panel. Change-Id: I1df5eb152cb18694dc89d562799c8d3e8950ca6f
8 lines
163 B
Python
8 lines
163 B
Python
from django.conf.urls.defaults import patterns, url
|
|
|
|
from .views import IndexView
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', IndexView.as_view(), name='index'),
|
|
)
|