diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2014-10-03 18:03:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-30 13:39:50 +0000 |
commit | a1f7a09801c2240b5f9a29683a2b538fcb9991d6 (patch) | |
tree | cc80a89b15fbac86fb01defc6c789bf582921986 /bitbake/lib/toaster/toastergui/urls.py | |
parent | c7382dbd8bb273062164e7cdb7233b60874c91d3 (diff) | |
download | poky-a1f7a09801c2240b5f9a29683a2b538fcb9991d6.tar.gz |
bitbake: toaster: changes to the landing page
This patch brings in a new landing page to be shown
when there are no builds and no projects available.
The builds page now displays only only the builds part,
without the landing page bits.
There is a new projects page that displays the All Projects
table as specified in the design.
[YOCTO #6682]
(Bitbake rev: c6c7c05521daa9bf16c122d7d472330ca4c05e88)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r-- | bitbake/lib/toaster/toastergui/urls.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py index e642e32036..07821b6036 100644 --- a/bitbake/lib/toaster/toastergui/urls.py +++ b/bitbake/lib/toaster/toastergui/urls.py | |||
@@ -21,6 +21,8 @@ from django.views.generic import RedirectView | |||
21 | 21 | ||
22 | urlpatterns = patterns('toastergui.views', | 22 | urlpatterns = patterns('toastergui.views', |
23 | # landing page | 23 | # landing page |
24 | url(r'^landing/$', 'landing', name='landing'), | ||
25 | |||
24 | url(r'^builds/$', 'builds', name='all-builds'), | 26 | url(r'^builds/$', 'builds', name='all-builds'), |
25 | # build info navigation | 27 | # build info navigation |
26 | url(r'^build/(?P<build_id>\d+)$', 'builddashboard', name="builddashboard"), | 28 | url(r'^build/(?P<build_id>\d+)$', 'builddashboard', name="builddashboard"), |
@@ -74,6 +76,7 @@ urlpatterns = patterns('toastergui.views', | |||
74 | url(r'^targets/$', 'targets', name='targets'), | 76 | url(r'^targets/$', 'targets', name='targets'), |
75 | url(r'^machines/$', 'machines', name='machines'), | 77 | url(r'^machines/$', 'machines', name='machines'), |
76 | 78 | ||
79 | url(r'^projects/$', 'projects', name='all-projects'), | ||
77 | url(r'^project/(?P<pid>\d+)/$', 'project', name='project'), | 80 | url(r'^project/(?P<pid>\d+)/$', 'project', name='project'), |
78 | url(r'^project/(?P<pid>\d+)/configuration$', 'projectconf', name='projectconf'), | 81 | url(r'^project/(?P<pid>\d+)/configuration$', 'projectconf', name='projectconf'), |
79 | url(r'^project/(?P<pid>\d+)/builds$', 'projectbuilds', name='projectbuilds'), | 82 | url(r'^project/(?P<pid>\d+)/builds$', 'projectbuilds', name='projectbuilds'), |
@@ -85,5 +88,5 @@ urlpatterns = patterns('toastergui.views', | |||
85 | 88 | ||
86 | 89 | ||
87 | # default redirection | 90 | # default redirection |
88 | url(r'^$', RedirectView.as_view( url= 'builds/')), | 91 | url(r'^$', RedirectView.as_view( url= 'landing')), |
89 | ) | 92 | ) |