{% extends "base.html" %} {% block title %}View Entries - Neural Data Replicator{% endblock %} {% block content %} {% if entries %} {% for entry in entries %}
ID: {{ entry.id }}
{{ entry.question }}

{{ entry.answer }}


Category: {{ entry.category or 'N/A' }}
Difficulty: {{ entry.difficulty or 'N/A' }}
{% if entry.tags %} {% endif %}
{% endfor %} {% else %}

No Entries Found

It looks like there's no data here yet. Why not add the first one?

Create First Entry
{% endif %} {% endblock %}