diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-01-21 10:34:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-23 11:33:53 +0000 |
commit | 02c49c229e8f3e2d49e78207e35b51dab540f088 (patch) | |
tree | 8cc42624e821aa2dab2b97033c6cdeeb4b567008 /bitbake | |
parent | ca8c634279ed65598999442d057fe9b110dea898 (diff) | |
download | poky-02c49c229e8f3e2d49e78207e35b51dab540f088.tar.gz |
bitbake: toastergui: all projects column show/hide
This patch fixes the show/hide in all projects page.
(Bitbake rev: 1d07020049d3bd824f6d0280c1cc7effa3db339d)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/projects.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/projects.html b/bitbake/lib/toaster/toastergui/templates/projects.html index 432f025d3c..0396e25a3a 100644 --- a/bitbake/lib/toaster/toastergui/templates/projects.html +++ b/bitbake/lib/toaster/toastergui/templates/projects.html | |||
@@ -23,12 +23,12 @@ | |||
23 | <td><a href="{% url 'project' o.id %}">{{o.release.name}}</a></td> | 23 | <td><a href="{% url 'project' o.id %}">{{o.release.name}}</a></td> |
24 | <td>{{o.get_current_machine_name}}</td> | 24 | <td>{{o.get_current_machine_name}}</td> |
25 | <td>{{o.get_number_of_builds}}</td> | 25 | <td>{{o.get_number_of_builds}}</td> |
26 | <td>{{o.get_last_outcome}}</td> | 26 | <td class="loutcome">{{o.get_last_outcome}}</td> |
27 | <td>{{o.get_last_target}}</td> | 27 | <td class="ltarget">{{o.get_last_target}}</td> |
28 | <td>{{o.get_last_errors}}</td> | 28 | <td class="lerrors">{{o.get_last_errors}}</td> |
29 | <td>{{o.get_last_warnings}}</td> | 29 | <td class="lwarnings">{{o.get_last_warnings}}</td> |
30 | <td>{{o.get_last_imgfiles}}</td> | 30 | <td class="limagefiles">{{o.get_last_imgfiles}}</td> |
31 | <td>{{o.updated|date:"d/m/y H:i"}}</td> | 31 | <td class="updated">{{o.updated|date:"d/m/y H:i"}}</td> |
32 | </tr> | 32 | </tr> |
33 | {% endfor %} | 33 | {% endfor %} |
34 | {% include "basetable_bottom.html" %} | 34 | {% include "basetable_bottom.html" %} |