Initial import of the database bootstrap app

This commit is contained in:
Roberto Rosario
2012-07-19 02:39:54 -04:00
parent 930360002b
commit b8aa5fa974
9 changed files with 177 additions and 0 deletions

6
apps/bootstrap/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('bootstrap.views',
url(r'^type/list/$', 'bootstrap_type_list', (), 'bootstrap_type_list'),
url(r'^(?P<bootstrap_name>\w+)/execute/$', 'bootstrap_execute', (), 'bootstrap_execute'),
)