mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.3 KiB
80 lines
2.3 KiB
{% extends "admin/admin_base.html" %}
|
|
{% load static %}
|
|
{% block content-area %}
|
|
<div class="card">
|
|
<header class="card-header">
|
|
<p class="card-header-title">
|
|
Dataset
|
|
</p>
|
|
<a href="#" class="card-header-icon" aria-label="more options">
|
|
<span class="icon">
|
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
</span>
|
|
</a>
|
|
</header>
|
|
<div class="card-content">
|
|
<table class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Text</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for doc in object_list %}
|
|
<tr>
|
|
<td>{{ forloop.counter0|add:page_obj.start_index }}</td>
|
|
<td>{{ doc.text|truncatechars:200 }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{% if is_paginated %}
|
|
<nav class="pagination is-left" role="navigation" aria-label="pagination">
|
|
<ul class="pagination-list">
|
|
{% if page_obj.number == 1 %}
|
|
<li class="pagination-link" disabled><span>⇤</span></li>
|
|
{% else %}
|
|
<li>
|
|
<a class="pagination-link" href="?page=1">⇤</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if page_obj.has_previous %}
|
|
<li>
|
|
<a class="pagination-link" href="?page={{ page_obj.previous_page_number }}">«</a>
|
|
</li>
|
|
{% else %}
|
|
<li class="pagination-link" disabled><span>«</span></li>
|
|
{% endif %}
|
|
{% for i in paginator.page_range %}
|
|
{% if page_obj.number == i %}
|
|
<li>
|
|
<a class="pagination-link is-current" aria-label="Goto page {{ i }}">{{ i }}</a>
|
|
</li>
|
|
{% elif i > page_obj.number|add:'-5' and i < page_obj.number|add:'5' %}
|
|
<li>
|
|
<a href="?page={{ i }}" class="pagination-link" aria-label="Goto page {{ i }}">{{ i }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if page_obj.has_next %}
|
|
<li>
|
|
<a class="pagination-link" href="?page={{ page_obj.next_page_number }}">»</a>
|
|
</li>
|
|
{% else %}
|
|
<li class="pagination-link" disabled><span>»</span></li>
|
|
{% endif %}
|
|
{% if page_obj.number == paginator.num_pages %}
|
|
<li class="pagination-link" disabled><span>⇥</span></li>
|
|
{% else %}
|
|
<li>
|
|
<a class="pagination-link" href="?page={{ paginator.num_pages }}">⇥</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
{% endif %}
|
|
{% endblock %}
|