layerindex-web/templates/layerindex/classicstats.html
Paul Eggleton 82c632ca2d Upgrade to Django 1.6+
I'd like to be upgrading to 1.8 but that causes problems with South, and
we're not quite ready to dispense with our existing migrations yet.

Part of the implementation for [YOCTO #9620].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-06-12 11:33:08 +12:00

57 lines
1.5 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.js" %}" type="text/javascript"></script>
<script src="{% static "js/nv.d3.js" %}" type="text/javascript"></script>
{% load_chart charttype_status chartdata_status "chart_status" extra_status %}
{% load_chart charttype_category chartdata_category "chart_category" extra_category %}
{% endblock %}