diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/baseprojectpage.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/baseprojectpage.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html b/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html new file mode 100644 index 0000000000..54edaaf27c --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/baseprojectpage.html | |||
@@ -0,0 +1,43 @@ | |||
1 | {% extends "base.html" %} | ||
2 | {% load projecttags %} | ||
3 | {% load humanize %} | ||
4 | {% block pagecontent %} | ||
5 | |||
6 | |||
7 | <div class=""> | ||
8 | <!-- Breadcrumbs --> | ||
9 | <div class="section"> | ||
10 | <ul class="breadcrumb" id="breadcrumb"> | ||
11 | <li><a href="{% url 'all-builds' %}">All builds</a></li> | ||
12 | {% block parentbreadcrumb %} | ||
13 | {% if project %} | ||
14 | <li> | ||
15 | <a href="{%url 'project' project.id %}">{{project.name}} | ||
16 | </a> | ||
17 | </li> | ||
18 | {% endif %} | ||
19 | {% endblock %} | ||
20 | {% block localbreadcrumb %}{% endblock %} | ||
21 | </ul> | ||
22 | <script> | ||
23 | $( function () { | ||
24 | $('#breadcrumb > li').append("<span class=\"divider\">→</span>"); | ||
25 | $('#breadcrumb > li:last').addClass("active"); | ||
26 | $('#breadcrumb > li:last > span').remove(); | ||
27 | }); | ||
28 | </script> | ||
29 | </div> | ||
30 | |||
31 | <div class="row-fluid"> | ||
32 | |||
33 | <!-- Begin right container --> | ||
34 | {% block projectinfomain %}{% endblock %} | ||
35 | <!-- End right container --> | ||
36 | |||
37 | |||
38 | </div> | ||
39 | </div> | ||
40 | |||
41 | |||
42 | {% endblock %} | ||
43 | |||