xref: /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/newcustomimage.html (revision f1e5d6968976c2341c6d554bfcc8895f1b33c26b)
1{% extends project_specific|yesno:"baseprojectspecificpage.html,base.html" %}
2{% load projecttags %}
3{% load humanize %}
4{% load static %}
5{% block pagecontent %}
6
7{% include "newcustomimage_modal.html" %}
8
9<div class="row">
10
11  {% include project_specific|yesno:"project_specific_topbar.html,projecttopbar.html" %}
12
13  <div class="col-md-12">
14    {% url table_name project.id as xhr_table_url %}
15    <h2>{{title}} (<span class="table-count-{{table_name}}">0</span>)</h2>
16    {% include "toastertable.html" %}
17  </div>
18
19</div>
20
21{% endblock %}
22