1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 01:19:52 +00:00

bitbake: toastergui: Add new project page and navigation

This brings in the new project page design and improved navigation. As
this also removes the dependency on Angular it also required that the
entry points to the project page such as machine-change notifications
are also updated.

[YOCTO #7329]

(Bitbake rev: 6489e6eb5c3b0d59063b6d60521fc33fe563e707)

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>
This commit is contained in:
Michael Wood
2015-07-31 15:09:12 +03:00
committed by Richard Purdie
parent 258c929973
commit 80c1586bbb
12 changed files with 636 additions and 502 deletions
@@ -1,10 +1,11 @@
{% extends "baseprojectpage.html" %}
{% extends "base.html" %}
{% load projecttags %}
{% load humanize %}
{% load static %}
{% block pagecontent %}
{% include "projecttopbar.html" %}
{% block projectinfomain %}
{% if project and project.release %}
<script src="{% static 'js/layerDepsModal.js' %}"></script>
@@ -24,12 +25,10 @@
});
</script>
<h2>Import layer</h2>
<form>
<span class="help-block">The layer you are importing must be compatible with <strong>{{project.release.description}}</strong>, which is the release you are using in this project.</span>
<form class="span11">
<fieldset class="air">
<legend>Layer repository information</legend>
<span class="help-block">The layer you are importing must be compatible with <strong>{{project.release.description}}</strong>, which is the release you are using in this project.</span>
<div class="alert alert-error" id="import-error" style="display:none">
<button type="button" class="close" data-dismiss="alert">&times;</button>
<h3>&nbsp;</h3>
@@ -136,5 +135,4 @@
</div>
{% endif %}
{% endblock %}