{% extends 'wizard/base.html' %} {% load index %} {% block content %}

Test-Grid

Übersicht Datenbasis

  • Artikel: {{ articles.count }}
  • Medien: {{ media.count }}
  • Themen: {{ tags.count }}
  • Pressespiegel: {{ files.count }}
  • Nutzer: {{ users.count }}
  • Artikel pro Thema: {{ ratio.apt }}
  • Themen pro Artikel: {{ ratio.tpa }}
  • Fehlerhaft geparste Dateien: {{ articles.wrongly_parsed_count }}

Top Medien

    {% for medium in media.top %}
  • {{ medium.name }}: {{ medium.count }}
  • {% empty %} {% endfor %}

Top regionale Medien

    {% for medium in media.top_regional %}
  • {{ medium.name }}: {{ medium.count }}
  • {% empty %} {% endfor %}

Top überregionale Medien

    {% for medium in media.top_national %}
  • {{ medium.name }}: {{ medium.count }}
  • {% empty %} {% endfor %}

Top Webseiten

    {% for medium in media.top_website %}
  • {{ medium.name }}: {{ medium.count }}
  • {% empty %} {% endfor %}

Top Tags

    {% for tag in tags.top %}
  • {{ tag.name }}: {{ tag.count }}
  • {% empty %} {% endfor %}

Fehlerhaft geparste Dateien

    {% for wrongly_parsed_file in articles.wrongly_parsed_files %}
  • {{ wrongly_parsed_file.upload_file }}
    Details anzeigen {% for wrongly_parsed_article in articles.wrongly_parsed_articles %}
      {% if wrongly_parsed_article.source_file_id == wrongly_parsed_file.id %}
    • Name: {{ wrongly_parsed_article.name }}
    • Text: {{ wrongly_parsed_article.text }}
    • {% endif %}
    {% empty %} {% endfor %}
  • {% empty %} {% endfor %}
1 von 5
2 von 5
3 von 5
4 von 5
5 von 5

{% csrf_token %}

{{ tags.all|by_index:splot }}

{% autoescape off %} {{ fplots|by_index:splot }} {% endautoescape %}
{% csrf_token %}
{% endblock %}