{% extends "base.html" %} {% load i18n %} {% block title %}{% trans 'Stats' %}{% endblock %} {% block content %}

{% trans 'Statistics' %}

{% trans 'Number of objects' %}
  • {% trans 'Recipes' %} : {{ counts.recipes }}
  • {% trans 'Keywords' %} : {{ counts.keywords }}
  • {% trans 'Units' %} : {{ counts.units }}
  • {% trans 'Ingredients' %} : {{ counts.ingredients }}
  • {% trans 'Recipe Imports' %} : {{ counts.recipe_import }}
{% trans 'Objects stats' %}
  • {% trans 'Recipes without Keywords' %} : {{ counts.recipes_no_keyword }}
  • {% trans 'External Recipes' %} : {{ counts.recipes_external }}
  • {% trans 'Internal Recipes' %} : {{ counts.recipes_internal }}
  • {% trans 'Comments' %} : {{ counts.comments }}
{% endblock %}