mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
Use the common functionality for change notifications. (Bitbake rev: 79af72e1b80b033a37992095b2e97449de5ebd8b) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
529 B
HTML
18 lines
529 B
HTML
{% extends "baseprojectpage.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% load static %}
|
|
|
|
{% block projectinfomain %}
|
|
|
|
<h2>{{title}} (<span class="table-count-{{table_name}}"></span>)
|
|
{% if project.release %}
|
|
<i class="icon-question-sign get-help heading-help" title="This page lists {{title}} compatible with the release selected for this project, which is {{project.release.description}}"></i>
|
|
{% endif %}
|
|
</h2>
|
|
|
|
{% url table_name project.id as xhr_table_url %}
|
|
{% include "toastertable.html" %}
|
|
|
|
{% endblock %}
|