{% extends "generate/base.html" %} {% set active_generate_page = "datasets" %} {% block title %}Dataset — {{ dataset_name }} | SPIKEE{% endblock %} {% block content %}
{# ── Header ── #}
← All Datasets
{{ dataset_name }}
{{ meta.entry_count }} entries
| Raw Edit New Row | Test this dataset →
{# ── Pagination ── #} {% if total_pages > 1 %} {% set base_url = '/generate/datasets/' ~ dataset_name %} {% endif %} {# ── Entries table ── #}
{% for col in columns %} {% endfor %} {% for entry in entries %} {% for col in columns %} {% if col == 'id' %} {% elif col == 'jailbreak_type' %} {% elif col == 'instruction_type' %} {% elif col == 'lang' %} {% elif col == 'plugin' %} {% elif col == 'position' %} {% elif col == 'content' %} {% endif %} {% endfor %} {% else %} {% endfor %} {% if total_pages > 1 and page < total_pages %} {% endif %}
{{ col_labels[col] }}
{{ entry.id }}{% if entry.jailbreak_type %}{{ entry.jailbreak_type }}{% else %}{% endif %}{% if entry.instruction_type %}{{ entry.instruction_type }}{% else %}{% endif %}{{ entry.lang or '—' }}{% if entry.plugin %}{{ entry.plugin }}{% else %}{% endif %}{{ entry.position or '—' }}
{{ entry.content or '—' }}
Edit
No entries found in this dataset.
Showing {{ entries | length }} of {{ total }} entries. Next page →
{% endblock %} {% block scripts %} {% endblock %}