summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r--bitbake/lib/toaster/toastergui/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index 1232611e2e..0002a5a2ee 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -24,6 +24,7 @@ from toastergui import tables
24from toastergui import buildtables 24from toastergui import buildtables
25from toastergui import typeaheads 25from toastergui import typeaheads
26from toastergui import api 26from toastergui import api
27from toastergui import widgets
27 28
28urlpatterns = patterns('toastergui.views', 29urlpatterns = patterns('toastergui.views',
29 # landing page 30 # landing page
@@ -224,7 +225,7 @@ urlpatterns = patterns('toastergui.views',
224 api.XhrProject.as_view(), 225 api.XhrProject.as_view(),
225 name='xhr_project'), 226 name='xhr_project'),
226 227
227 url(r'^mostrecentbuilds$', api.MostRecentBuildsView.as_view(), 228 url(r'^mostrecentbuilds$', widgets.MostRecentBuildsView.as_view(),
228 name='most_recent_builds'), 229 name='most_recent_builds'),
229 230
230 # default redirection 231 # default redirection