mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-05 05:04:46 +02:00

Add a script for doing a one-time import of OE-Classic recipe information, so comparisons against OE-Core can be performed; this is stored using a new ClassicRecipe model supporting additional fields for tracking migration status. The migration status fields can be updated as well as viewed and summarised in graph format. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
57 lines
1.4 KiB
HTML
57 lines
1.4 KiB
HTML
{% extends "layerindex/classic_base.html" %}
|
|
{% load i18n %}
|
|
{% load nvd3_tags %}
|
|
{% load staticfiles %}
|
|
|
|
{% comment %}
|
|
|
|
layerindex-web - OE-Classic recipe migration stats template
|
|
|
|
Copyright (C) 2013 Intel Corporation
|
|
Licensed under the MIT license, see COPYING.MIT for details
|
|
|
|
{% endcomment %}
|
|
|
|
|
|
<!--
|
|
{% block title_append %} - OE-Classic recipe statistics{% endblock %}
|
|
-->
|
|
|
|
{% block navs %}
|
|
{% autoescape on %}
|
|
<li><a href="{% url classic_recipe_search %}">Recipes</a></li>
|
|
<li class="active"><a href="{% url classic_recipe_stats %}">Stats</a></li>
|
|
{% endautoescape %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content_inner %}
|
|
{% autoescape on %}
|
|
|
|
<div class="row-fluid">
|
|
|
|
<h2>OE-Classic statistics</h2>
|
|
|
|
<h3>Migration status</h3>
|
|
{% include_container "chart_status" 400 600 %}
|
|
|
|
<h3>Unmigrated recipes by category</h3>
|
|
{% include_container "chart_category" 400 600 %}
|
|
|
|
</div>
|
|
|
|
{% endautoescape %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
|
|
<link media="all" href="{% static "css/nv.d3.css" %}" type="text/css" rel="stylesheet" />
|
|
<script src="{% static "js/d3.v2.js" %}" type="text/javascript"></script>
|
|
<script src="{% static "js/nv.d3.js" %}" type="text/javascript"></script>
|
|
|
|
{% load_chart charttype_status chartdata_status "chart_status" %}
|
|
{% load_chart charttype_category chartdata_category "chart_category" %}
|
|
{% endblock %}
|