mirror of
https://git.yoctoproject.org/poky
synced 2026-03-09 16:59:40 +01:00
Port all the pages in the build analysis area to bootstrap version 3. (Bitbake rev: f963b73f0bf32db2df39dd79d8d85184c280cda0) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
533 B
HTML
19 lines
533 B
HTML
{% extends "base.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% load static %}
|
|
|
|
{% block title %} Build artifact does not exist - Toaster {% endblock %}
|
|
|
|
{% block pagecontent %}
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<div class="alert alert-info lead top-air">
|
|
<p>The build artifact you are trying to download does not exist.</p>
|
|
<p><a href="javascript:window.history.back()">Back to previous page</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|