mirror of https://github.com/doccano/doccano.git
pythonannotation-tooldatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learning
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.
24 lines
677 B
24 lines
677 B
{% extends "annotation/annotation_base.html" %}
|
|
{% load static %}
|
|
{% block annotation-area %}
|
|
<div class="card">
|
|
<div class="card-content" v-if="items.length">
|
|
<div class="content">
|
|
[[ items[cur].text ]]
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card" style="margin-top:30px;">
|
|
<div class="card-content" contenteditable="true" v-if="items[cur].labels.length">
|
|
[[ items[cur].labels[0].text ]]
|
|
</div>
|
|
<div v-else class="card-content" contenteditable="true">
|
|
Input response...
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
<script type="text/javascript" src="{% static 'bundle/seq2seq.js' %}"></script>
|
|
{% endblock %}
|