diff options
| author | David Reyna <David.Reyna@windriver.com> | 2015-03-21 18:01:38 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-25 12:39:53 +0000 |
| commit | 6a934f488fd636829efbcb24058f92621e5a9fc6 (patch) | |
| tree | cce4aaacc49ba4c179573de7f4ff2f2017044707 /bitbake/lib/toaster/toastergui/templates/build.html | |
| parent | e840b7a8fba16b857db4e74dd8331680a21e5eb1 (diff) | |
| download | poky-6a934f488fd636829efbcb24058f92621e5a9fc6.tar.gz | |
bitbake: toaster: build date range selections
Enable date range selections for build start and build complete in all
builds page for both managed and interactive mode. Disable the filter
counts.
[YOCTO #6040]
[YOCTO #7249]
[YOCTO #7461]
(Bitbake rev: 7c86ed5fb51c6237fa40fb454e58564ef027dd51)
Signed-off-by: David Reyna <David.Reyna@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/build.html')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/templates/build.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/build.html b/bitbake/lib/toaster/toastergui/templates/build.html index 684ec65884..f7ad2f4892 100644 --- a/bitbake/lib/toaster/toastergui/templates/build.html +++ b/bitbake/lib/toaster/toastergui/templates/build.html | |||
| @@ -4,7 +4,24 @@ | |||
| 4 | {% load projecttags %} | 4 | {% load projecttags %} |
| 5 | {% load humanize %} | 5 | {% load humanize %} |
| 6 | 6 | ||
| 7 | {% block extraheadcontent %} | ||
| 8 | <link rel="stylesheet" href="/static/css/jquery-ui.min.css" type='text/css'> | ||
| 9 | <link rel="stylesheet" href="/static/css/jquery-ui.structure.min.css" type='text/css'> | ||
| 10 | <link rel="stylesheet" href="/static/css/jquery-ui.theme.min.css" type='text/css'> | ||
| 11 | <script src="/static/js/jquery-ui.min.js"></script> | ||
| 12 | <script src="/static/js/filtersnippet.js"></script> | ||
| 13 | {% endblock %} | ||
| 14 | |||
| 7 | {% block pagecontent %} | 15 | {% block pagecontent %} |
| 16 | |||
| 17 | <script> | ||
| 18 | // intiialize the date range controls | ||
| 19 | $(document).ready(function () { | ||
| 20 | date_init('started_on','{{last_date_from}}','{{last_date_to}}','{{dateMin_started_on}}','{{dateMax_started_on}}','{{daterange_selected}}'); | ||
| 21 | date_init('completed_on','{{last_date_from}}','{{last_date_to}}','{{dateMin_completed_on}}','{{dateMax_completed_on}}','{{daterange_selected}}'); | ||
| 22 | }); | ||
| 23 | </script> | ||
| 24 | |||
| 8 | <div class="row-fluid"> | 25 | <div class="row-fluid"> |
| 9 | 26 | ||
| 10 | {% include "mrb_section.html" %} | 27 | {% include "mrb_section.html" %} |
