From 5b80bfd7bffd4c20d80b7c70a7130529e9a755dd Mon Sep 17 00:00:00 2001 From: ToshikazuOhiwa Date: Mon, 30 Mar 2020 09:24:26 +0900 Subject: agl-basesystem --- .../toastergui/templates/recipedetails.html | 175 +++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 external/poky/bitbake/lib/toaster/toastergui/templates/recipedetails.html (limited to 'external/poky/bitbake/lib/toaster/toastergui/templates/recipedetails.html') diff --git a/external/poky/bitbake/lib/toaster/toastergui/templates/recipedetails.html b/external/poky/bitbake/lib/toaster/toastergui/templates/recipedetails.html new file mode 100644 index 00000000..66c1f7bc --- /dev/null +++ b/external/poky/bitbake/lib/toaster/toastergui/templates/recipedetails.html @@ -0,0 +1,175 @@ +{% extends "base.html" %} +{% load projecttags %} +{% load humanize %} +{% load static %} +{% block pagecontent %} + + + + + + +{% include 'newcustomimage_modal.html' %} + + + + +
+
+
+ + {% if recipe.is_image %} + + {% endif %} +
+
+ +
+ +
+ {% if packages.count %} + {% url 'recipepackages' project.id recipe.id as xhr_table_url %} +

{{title}} (0)

+ {% include "toastertable.html" %} + {% else %} +

{{title}}

+ {% endif %} + + + + +
+
+
+
+

About {{recipe.name}}

+
+
+ Approx. packages included + +
+
{{packages.count}}
+
+ Approx. package size + +
+
{{approx_pkg_size.size__sum|filtered_filesizeformat}}
+ {% if last_build %} +
Last build
+
+ + {{last_build.completed_on|date:"d/m/y H:i"}} +
+ {% endif %} +
Recipe file
+
+ {{recipe.file_path|cut_path_prefix:recipe.layer_version.local_path}} + +
+
Layer
+
{{recipe.layer_version.layer.name}}
+
+ Summary +
+
+ {{recipe.summary}} +
+
+ Description +
+
+ {{recipe.description}} +
+
Version
+
+ {{recipe.version}} +
+
Section
+
+ {{recipe.section}} +
+
License
+
+ {{recipe.license}} +
+
+
+
+
+ +{% endblock %} -- cgit 1.2.3-korg