added misc plugins towards wizards for the portal
[myslice.git] / portal / urls.py
1 from django.conf.urls import patterns, url
2
3 from portal import views
4
5 urlpatterns = patterns('',
6     url(r'^$', views.index, name='index')
7 )