diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-02-19 10:57:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-09 12:24:00 -0700 |
commit | 76615857f04a6a17baec7d5984a4345054547dae (patch) | |
tree | f1a13627843a8c8bb914d75b4da4312ce7b0cb15 /bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html | |
parent | 48a93d6452bda1fea3bd6adf7a19575cb5960afa (diff) | |
download | poky-76615857f04a6a17baec7d5984a4345054547dae.tar.gz |
bitbake: toaster: Fix breadcrumb date format in detail pages
The template basebuilddetailpage.html had the completed
on date in the breadcrumb set to naturaltime. Changed to
d/m/y H:i to match the date format in the basebuildpage.html
template, so that breadcrumbs display the same date format across
all pages.
(Bitbake rev: 188c12901c9573285956cded76f27a0d6330c82e)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html')
-rwxr-xr-x | bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html b/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html index 2be80a59f1..5149768517 100755 --- a/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html +++ b/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html | |||
@@ -7,7 +7,7 @@ | |||
7 | <div class="section"> | 7 | <div class="section"> |
8 | <ul class="breadcrumb" id="breadcrumb"> | 8 | <ul class="breadcrumb" id="breadcrumb"> |
9 | <li><a href="{% url 'all-builds' %}">All builds</a></li> | 9 | <li><a href="{% url 'all-builds' %}">All builds</a></li> |
10 | <li><a href="{%url 'builddashboard' build.pk%}">{{build.target_set.all.0.target}} {%if build.target_set.all.count > 1%}(+ {{build.target_set.all.count|add:"-1"}}){%endif%} {{build.machine}} ({{build.completed_on|naturaltime}})</a></li> | 10 | <li><a href="{%url 'builddashboard' build.pk%}">{{build.target_set.all.0.target}} {%if build.target_set.all.count > 1%}(+ {{build.target_set.all.count|add:"-1"}}){%endif%} {{build.machine}} ({{build.completed_on|date:"d/m/y H:i"}})</a></li> |
11 | {% block localbreadcrumb %}{% endblock %} | 11 | {% block localbreadcrumb %}{% endblock %} |
12 | </ul> | 12 | </ul> |
13 | <script> | 13 | <script> |