From 84b239086dbd53c59d51f4e0779767a72af02d2b Mon Sep 17 00:00:00 2001 From: David Reyna Date: Fri, 17 Jan 2014 16:58:08 -0800 Subject: bitbake: toaster: Implementation of recipe detail views Add the new recipe detail page and update the view context accordingly. Rename the recipe summary page to 'recipes.html' and add the respective links to the recipe details page. The views are based on specifications found in attachments to https://bugzilla.yoctoproject.org/show_bug.cgi?id=4299 [YOCTO #4299] (Bitbake rev: d561000b6c4927ef6ec269e9ab7c70249b3c344a) Signed-off-by: David Reyna Signed-off-by: Richard Purdie --- .../lib/toaster/toastergui/templates/recipes.html | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100755 bitbake/lib/toaster/toastergui/templates/recipes.html (limited to 'bitbake/lib/toaster/toastergui/templates/recipes.html') diff --git a/bitbake/lib/toaster/toastergui/templates/recipes.html b/bitbake/lib/toaster/toastergui/templates/recipes.html new file mode 100755 index 0000000000..2e0c2d1c6d --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/recipes.html @@ -0,0 +1,52 @@ +{% extends "basebuildpage.html" %} + +{% block localbreadcrumb %} +
  • Recipes
  • +{% endblock %} + +{% block buildinfomain %} +
    +{% include "basetable_top.html" %} + + + + Name + Version + Summary + Description + Section + License + License file + Homepage + Bugtracker + File_path + Recipe Dependency + + + {% for recipe in objects %} + + + {{recipe.name}} + {{recipe.version}} + {{recipe.summary}} + {{recipe.description}} + {{recipe.section}} + {{recipe.license}} + {{recipe.licensing_info}} + {{recipe.homepage}} + {{recipe.bugtracker}} + {{recipe.file_path}} + +
    + {% for rr in recipe.r_dependencies_recipe.all %} + {{rr.depends_on.name}}
    + {% endfor %} +
    + + + + {% endfor %} + +{% include "basetable_bottom.html" %} +
    +{% endblock %} -- cgit v1.2.3-54-g00ecf