mirror of
https://git.yoctoproject.org/poky
synced 2026-03-15 11:49:39 +01:00
This patch rewrites the Project page and the additional infrastructure in order to fix a bug that makes triggering builds through UI impossible, and to introduce data feeds for suggestions for the user. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.0 KiB
HTML
44 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% block pagecontent %}
|
|
|
|
|
|
<div class="">
|
|
<!-- Breadcrumbs -->
|
|
<div class="section">
|
|
<ul class="breadcrumb" id="breadcrumb">
|
|
<li><a href="{% url 'all-builds' %}">All builds</a></li>
|
|
{% block parentbreadcrumb %}
|
|
{% if project %}
|
|
<li>
|
|
<a href="{%url 'project' project.id %}"><span id="project_name">{{project.name}}</span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block localbreadcrumb %}{% endblock %}
|
|
</ul>
|
|
<script>
|
|
$( function () {
|
|
$('#breadcrumb > li').append("<span class=\"divider\">→</span>");
|
|
$('#breadcrumb > li:last').addClass("active");
|
|
$('#breadcrumb > li:last > span').remove();
|
|
});
|
|
</script>
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<!-- Begin main page container -->
|
|
{% block projectinfomain %}{% endblock %}
|
|
<!-- End main container -->
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|
|
|