mirror of
https://git.yoctoproject.org/poky
synced 2026-03-14 11:19:42 +01:00
Move the modal template and JS out of the newcustomimage page so that it can also be used by the image details page. (Bitbake rev: c310bc6bab1a33124906dd57b3c63462a773ff25) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
360 B
HTML
15 lines
360 B
HTML
{% extends "base.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% load static %}
|
|
{% block pagecontent %}
|
|
|
|
{% include "newcustomimage_modal.html" %}
|
|
{% include "projecttopbar.html" %}
|
|
|
|
{% url table_name project.id as xhr_table_url %}
|
|
<h2>{{title}} (<span class="table-count-{{table_name}}">0</span>)</h2>
|
|
{% include "toastertable.html" %}
|
|
|
|
{% endblock %}
|