Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% load static %}
|
||||
|
||||
{% block extraheadcontent %}
|
||||
<link rel="stylesheet" href="{% static 'css/jquery-ui.min.css' %}" type='text/css'>
|
||||
<link rel="stylesheet" href="{% static 'css/jquery-ui.structure.min.css' %}" type='text/css'>
|
||||
<link rel="stylesheet" href="{% static 'css/jquery-ui.theme.min.css' %}" type='text/css'>
|
||||
<script src="{% static 'js/jquery-ui.min.js' %}">
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block title %} {{title}} - {{project.name}} - Toaster {% endblock %}
|
||||
|
||||
{% block pagecontent %}
|
||||
<div class="row">
|
||||
|
||||
{% include "projecttopbar.html" %}
|
||||
|
||||
<div class="col-md-12">
|
||||
{% with mru=mru mrb_type=mrb_type %}
|
||||
{% include 'mrb_section.html' %}
|
||||
{% endwith %}
|
||||
|
||||
<h2 class="top-air" data-role="page-title"></h2>
|
||||
|
||||
{% if not build_in_progress_none_completed %}
|
||||
{% url 'projectbuilds' project.id as xhr_table_url %}
|
||||
{% include 'toastertable.html' %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
// title
|
||||
var tableElt = $("#{{table_name}}");
|
||||
var titleElt = $("[data-role='page-title']");
|
||||
|
||||
tableElt.on("table-done", function (e, total, tableParams) {
|
||||
var title = "All project builds";
|
||||
|
||||
if (tableParams.search || tableParams.filter) {
|
||||
if (total === 0) {
|
||||
title = "No project builds found";
|
||||
}
|
||||
else if (total > 0) {
|
||||
title = total + " project build" + (total > 1 ? 's' : '') + " found";
|
||||
}
|
||||
}
|
||||
|
||||
if (total === 0) {
|
||||
titleElt.hide();
|
||||
} else {
|
||||
titleElt.show();
|
||||
titleElt.text(title);
|
||||
}
|
||||
});
|
||||
|
||||
// highlight builds tab
|
||||
$("#topbar-builds-tab").addClass("active")
|
||||
});
|
||||
</script>
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user