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.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index 1ad79a4dd3..6aebc3f833 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -158,6 +158,11 @@ urlpatterns = [
158 name=tables.LayerMachinesTable.__name__.lower()), 158 name=tables.LayerMachinesTable.__name__.lower()),
159 159
160 160
161 url(r'^project/(?P<pid>\d+)/distros/$',
162 tables.DistrosTable.as_view(template_name="generic-toastertable-page.html"),
163 name="projectdistros"),
164
165
161 url(r'^project/(?P<pid>\d+)/customrecipe/(?P<custrecipeid>\d+)/selectpackages/$', 166 url(r'^project/(?P<pid>\d+)/customrecipe/(?P<custrecipeid>\d+)/selectpackages/$',
162 tables.SelectPackagesTable.as_view(), name="recipeselectpackages"), 167 tables.SelectPackagesTable.as_view(), name="recipeselectpackages"),
163 168
@@ -187,6 +192,9 @@ urlpatterns = [
187 typeaheads.GitRevisionTypeAhead.as_view(), 192 typeaheads.GitRevisionTypeAhead.as_view(),
188 name='xhr_gitrevtypeahead'), 193 name='xhr_gitrevtypeahead'),
189 194
195 url(r'^xhr_typeahead/(?P<pid>\d+)/distros$',
196 typeaheads.DistrosTypeAhead.as_view(), name='xhr_distrostypeahead'),
197
190 url(r'^xhr_testreleasechange/(?P<pid>\d+)$', views.xhr_testreleasechange, 198 url(r'^xhr_testreleasechange/(?P<pid>\d+)$', views.xhr_testreleasechange,
191 name='xhr_testreleasechange'), 199 name='xhr_testreleasechange'),
192 url(r'^xhr_configvaredit/(?P<pid>\d+)$', views.xhr_configvaredit, 200 url(r'^xhr_configvaredit/(?P<pid>\d+)$', views.xhr_configvaredit,