diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/projects.html')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/templates/projects.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/projects.html b/bitbake/lib/toaster/toastergui/templates/projects.html new file mode 100644 index 0000000000..432f025d3c --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/projects.html | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | {% extends "base.html" %} | ||
| 2 | |||
| 3 | {% load static %} | ||
| 4 | {% load projecttags %} | ||
| 5 | {% load humanize %} | ||
| 6 | |||
| 7 | {% block pagecontent %} | ||
| 8 | |||
| 9 | |||
| 10 | {% include "mrb_section.html" %} | ||
| 11 | |||
| 12 | |||
| 13 | <div class="page-header top-air"> | ||
| 14 | <h1> | ||
| 15 | All projects | ||
| 16 | </h1> | ||
| 17 | </div> | ||
| 18 | |||
| 19 | {% include "basetable_top_projectbuilds.html" %} | ||
| 20 | {% for o in objects %} | ||
| 21 | <tr class="data"> | ||
| 22 | <td><a href="{% url 'project' o.id %}">{{o.name}}</a></td> | ||
| 23 | <td><a href="{% url 'project' o.id %}">{{o.release.name}}</a></td> | ||
| 24 | <td>{{o.get_current_machine_name}}</td> | ||
| 25 | <td>{{o.get_number_of_builds}}</td> | ||
| 26 | <td>{{o.get_last_outcome}}</td> | ||
| 27 | <td>{{o.get_last_target}}</td> | ||
| 28 | <td>{{o.get_last_errors}}</td> | ||
| 29 | <td>{{o.get_last_warnings}}</td> | ||
| 30 | <td>{{o.get_last_imgfiles}}</td> | ||
| 31 | <td>{{o.updated|date:"d/m/y H:i"}}</td> | ||
| 32 | </tr> | ||
| 33 | {% endfor %} | ||
| 34 | {% include "basetable_bottom.html" %} | ||
| 35 | |||
| 36 | {% endblock %} | ||
