{% extends 'dashboard/base.html' %} {% block title %}Riwayat{% endblock title %} {% block style %} {% endblock style %} {% block content %}
{% if current_user.role == "admin" %}
Kembali
{% endif %}

Riwayat

{% if histories %}
{% endif %}
{% if histories %} {% for history in histories %}

{{ history.tanggal_inferensi }}

{% if current_user.role == "pengguna" %} {% endif %}

{{ history.abstrak }}

{{ history.kata_kunci }}

    {% for key, value in history.probabilitas.items() %}
  1. {{ key }}: {{ value }}%
  2. {% endfor %}

{{ history.kelompok_bidang_keahlian }}

    {% for value in history.top_similarity %}
  1. {{ value.supervisor }}
  2. {% endfor %}
{% endfor %} {% else %}

Tidak ada data yang ditemukan

{% endif %}
{% endblock content %} {% block modal %}