From 47621ecb24eedd803f17a551230a524193089c9a Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Wed, 18 Dec 2013 19:50:45 +0000 Subject: bitbake: toaster: clone Simple UI as base for Toaster GUI This patch clones the Simple UI to provide the base code for the development of the Toaster GUI. The clone takes the place of the application that was reserved for Javascript MVC code. The templates used for Simple UI are renamed to start with an "simple_" to prevent name resolution conflict with the Toaster GUI templates. Minor changes are made to the settings.py and urls.py in the toaster main section to account for the newly enabled application. (Bitbake rev: e2fde84f16da017ba0d71aef6a1fa8e2b9255db4) Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- .../lib/toaster/bldviewer/templates/recipe.html | 52 ---------------------- 1 file changed, 52 deletions(-) delete mode 100644 bitbake/lib/toaster/bldviewer/templates/recipe.html (limited to 'bitbake/lib/toaster/bldviewer/templates/recipe.html') diff --git a/bitbake/lib/toaster/bldviewer/templates/recipe.html b/bitbake/lib/toaster/bldviewer/templates/recipe.html deleted file mode 100644 index d7f57eb9ea..0000000000 --- a/bitbake/lib/toaster/bldviewer/templates/recipe.html +++ /dev/null @@ -1,52 +0,0 @@ -{% extends "basetable.html" %} - -{% block pagename %} - -

Toaster - Recipes for a Layer

-{% endblock %} - -{% block pagetable %} - {% load projecttags %} - - - - 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 %} - -{% endblock %} -- cgit v1.2.3-54-g00ecf