layerindex-web/templates/layerindex/classicstats.html
Paul Eggleton c3a8eb4d82 Add support for importing OE-Classic recipes
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>
2013-09-05 00:31:22 +01:00

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 %}